/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

  1. #ifndef CONFIGWRITERIF_H
  2. #define CONFIGWRITERIF_H
  3. #include "ConfigOperatorIf.h"
  4. namespace woe
  5. {
  6. class TUTIL_API IConfigWriter
  7. {
  8. public:
  9. virtual ~IConfigWriter(){};
  10. /**
  11. * DoSave
  12. *
  13. * @param config
  14. * @return bool
  15. */
  16. virtual bool DoSave(const std::string& strFileName, IConfigOperator* config) = 0;
  17. };
  18. }
  19. #endif // CONFIGWRITERIF_H