cgma
|
00001 //- Class: CubitEvent 00002 //- Description: Class describing an event. This base class is sufficient 00003 //- to describe basic unary events, like destroying a model 00004 //- entity. Derived classes describe events requiring extra 00005 //- data, such as merging two model entities. 00006 //- Owner: 00007 00008 #ifndef CUBITEVENT_HPP 00009 #define CUBITEVENT_HPP 00010 00011 #include "CGMUtilConfigure.h" 00012 00013 class CUBIT_UTIL_EXPORT CubitEvent 00014 { 00015 public: 00016 virtual ~CubitEvent(); 00017 }; 00018 00019 00020 #endif 00021