|
Last change
on this file since 9833 was
9718,
checked in by bensch, 19 years ago
|
|
more thoughts on Resources, and soon going to adapt… i think i've got a clue 
|
|
File size:
349 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | * @file proto_class.h |
|---|
| 3 | * @brief Definition of ... |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _PROTO_CLASS_H |
|---|
| 7 | #define _PROTO_CLASS_H |
|---|
| 8 | |
|---|
| 9 | #include "base_object.h" |
|---|
| 10 | |
|---|
| 11 | // FORWARD DECLARATION |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | //! A class for ... |
|---|
| 16 | class ProtoClass : public BaseObject { |
|---|
| 17 | ObjectListDeclaration(ProtoClass); |
|---|
| 18 | public: |
|---|
| 19 | ProtoClass(); |
|---|
| 20 | virtual ~ProtoClass(); |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | private: |
|---|
| 24 | |
|---|
| 25 | }; |
|---|
| 26 | |
|---|
| 27 | #endif /* _PROTO_CLASS_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.