#ifndef __BRIDGE_H__
#define __BRIDGE_H__
class Bridge {
protected:
char *str;
public:
Bridge();
Bridge(char *s);
virtual ~Bridge();
void pset(char *p);
void put();
};
extern "C" {
void bput();
}
extern "C" {
typedef double dReal;
dReal _dDot(const dReal *a, const dReal *b, int n);
}
#endif