// // Programmer: Craig Stuart Sapp // Creation Date: Fri Feb 26 04:29:45 PST 1999 // Last Modified: Fri Feb 26 04:29:51 PST 1999 // Filename: ...sigNet/NetBase/NetBase.h // Syntax: C++ // #ifndef _NETBASE_H_INCLUDED #define _NETBASE_H_INCLUDED #include "Matrix.h" class NetBase : public Matrix { public: NetBase (const char* aName = NULL); NetBase (int size, const char* aName = NULL); NetBase (int rows, int colums,const char* aName = NULL); ~NetBase (); const char* getName (void) const; void setName (const char* aString); void setSize (int aSize); void seed (double lowerlimit = 0.0, double upperlimit = 1.0, int seed = 0); protected: char* name; // for storing name of element static int namer; // for naming unnamed elements }; #endif /* _NETBASE_H_INCLUDED */ // md5sum: 9a0e60e2d0e92b1e8d94554917f9f066 NetBase.h [20050403]