/TGame/TUtil/Config/ConfigWriterIf.h
http://awoe.googlecode.com/ · C Header · 26 lines · 13 code · 7 blank · 6 comment · 0 complexity · 1069192edc40a4b5b8855c9536f04cef MD5 · raw file
- #ifndef CONFIGWRITERIF_H
- #define CONFIGWRITERIF_H
-
- #include "ConfigOperatorIf.h"
-
- namespace woe
- {
- class TUTIL_API IConfigWriter
- {
- public:
- virtual ~IConfigWriter(){};
-
-
- /**
- * DoSave
- *
- * @param config
- * @return bool
- */
- virtual bool DoSave(const std::string& strFileName, IConfigOperator* config) = 0;
- };
- }
-
- #endif // CONFIGWRITERIF_H