/**** * * Class ToolView is a generic base class for tools such as those being * developed in the Polysuite and Enchilada projects. ToolView contains a * pulldown menubar and generic file and edit pulldown menus. * */ #ifndef toolmodelIncluded #define toolmodelIncluded #include "model.h" class ToolModel : public Model { public: virtual void Serialize(); /* * Speciication forthcoming. */ virtual void Deserialize(); /* * Speciication forthcoming. */ protected: }; #endif