|
Revision 13041, 462 bytes
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #ifndef __READERWRITER_VBSP_H_ |
|---|
| 2 | #define __READERWRITER_VBSP_H_ |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | #include <osgDB/Registry> |
|---|
| 6 | #include <osgDB/FileNameUtils> |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | namespace bsp |
|---|
| 10 | { |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | class ReaderWriterBSP : public osgDB::ReaderWriter |
|---|
| 14 | { |
|---|
| 15 | public: |
|---|
| 16 | |
|---|
| 17 | virtual const char* className() const; |
|---|
| 18 | |
|---|
| 19 | virtual bool acceptsExtension(const std::string& extension) const; |
|---|
| 20 | |
|---|
| 21 | virtual ReadResult readNode(const std::string& file, |
|---|
| 22 | const Options* options) const; |
|---|
| 23 | }; |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | } |
|---|
| 27 | |
|---|
| 28 | #endif |
|---|