source: Revenant/yamlprovider/include/yamlmetaconfig.h@ dd8f5b4

Last change on this file since dd8f5b4 was dd8f5b4, checked in by Jonathan Neufeld <support@…>, 4 years ago

(WIP) GD Native module

  • Property mode set to 100644
File size: 435 bytes
RevLine 
[dd8f5b4]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
10namespace 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.