/*------------------------------------------------------------------------* * programm : E L E M E N T . H P P * * date : 05.11.1992 * * created by : (fa) * * Projekt MEE * * * *------------------------------------------------------------------------*/ // // Contents ------------------------------------------------- // // Element // // Description // // Defines the generic class Element for general use // // End ------------------------------------------------------ // // Interface Dependencies ----------------------------------- #ifndef __ELEMENT_H #define __ELEMENT_H // End ------------------------------------------------------ // Class // class Element{ public: virtual ~Element()=0; }; #endif // ifndef __ELEMENT_H