// // 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/Weight/Weight.h // Syntax: C++ // #ifndef _WEIGHT_H_INCLUDED #define _WEIGHT_H_INCLUDED #include "NetBase.h" class Weight : public NetBase { public: Weight (void); Weight (int rows, int columns); ~Weight (); protected: }; #endif /* _WEIGHT_H_INCLUDED */ // md5sum: 9436d4e1675f2eebc56b0b640f121c79 Weight.h [20050403]