|
Revision 3304, 0.7 kB
(checked in by anonymous, 9 years ago)
|
|
This commit was manufactured by cvs2svn to create tag
'OpenSceneGraph_0_9_7_release_revision_2'.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | #ifndef __FLT_UNKNOWN_RECORD_H |
|---|
| 4 | #define __FLT_UNKNOWN_RECORD_H |
|---|
| 5 | |
|---|
| 6 | #include "opcodes.h" |
|---|
| 7 | #include "Record.h" |
|---|
| 8 | #include "RecordVisitor.h" |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | namespace flt { |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | class UnknownRecord : public AncillaryRecord |
|---|
| 17 | { |
|---|
| 18 | public: |
|---|
| 19 | |
|---|
| 20 | UnknownRecord(); |
|---|
| 21 | virtual ~UnknownRecord(); |
|---|
| 22 | |
|---|
| 23 | virtual Record* clone() const { return new UnknownRecord(); } |
|---|
| 24 | virtual const char* className() const { return "UnknownRecord"; } |
|---|
| 25 | virtual int classOpcode() const { return 0; } |
|---|
| 26 | virtual void accept(RecordVisitor& rv) { rv.apply(*this); } |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | protected: |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | }; |
|---|
| 33 | |
|---|
| 34 | }; |
|---|
| 35 | |
|---|
| 36 | #endif |
|---|