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