Branch data Line data Source code
1 : : //- Class: CubitEvent
2 : : //- Description: Class describing an event. This base class is sufficient
3 : : //- to describe basic unary events, like destroying a model
4 : : //- entity. Derived classes describe events requiring extra
5 : : //- data, such as merging two model entities.
6 : : //- Owner:
7 : :
8 : : #ifndef CUBITEVENT_HPP
9 : : #define CUBITEVENT_HPP
10 : :
11 : : #include "CGMUtilConfigure.h"
12 : :
13 : 249255 : class CUBIT_UTIL_EXPORT CubitEvent
14 : : {
15 : : public:
16 : : virtual ~CubitEvent();
17 : : };
18 : :
19 : :
20 : : #endif
21 : :
|