port/mars-tycoon
Last change
on this file since 25c4774 was 4962c49, checked in by Jonathan Neufeld <support@…>, 3 years ago |
Introduce CLI Terrain Generator utility
|
-
Property mode
set to
100644
|
File size:
435 bytes
|
Rev | Line | |
---|
[4962c49] | 1 | #ifndef __YAMLMETACONFIG_H__
|
---|
| 2 | #define __YAMLMETACONFIG_H__
|
---|
| 3 |
|
---|
| 4 | #include <yaml.h>
|
---|
| 5 | #include <gwconfig.h>
|
---|
| 6 | #include <fstream>
|
---|
| 7 |
|
---|
| 8 | #include <mars_platform.h>
|
---|
| 9 |
|
---|
| 10 | namespace genesis
|
---|
| 11 | {
|
---|
| 12 | class DL_EXPORT YAMLMetaConfigReader : public geoworld::IMetaConfigReader
|
---|
| 13 | {
|
---|
| 14 | public:
|
---|
| 15 | YAMLMetaConfigReader(std::istream & input);
|
---|
| 16 | ~YAMLMetaConfigReader();
|
---|
| 17 |
|
---|
| 18 | virtual bool load( geoworld::MetaConfig & cfg );
|
---|
| 19 |
|
---|
| 20 | private:
|
---|
| 21 | std::istream & _input;
|
---|
| 22 | };
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.