#ifndef DEFAULT_THEME_WRITER #define DEFAULT_THEME_WRITER #include "../../XlsxSerializerCom/Common/Common.h" namespace Writers { class DefaultThemeWriter { public: DefaultThemeWriter() { } void Write(CString sThemeFilePath) { CString s_Common; s_Common = _T(" \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ "); s_Common += _T(" \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ "); s_Common += _T(" \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ "); OOX::CPath fileName = sThemeFilePath; CFile oFile; oFile.CreateFile(fileName.GetPath()); oFile.WriteStringUTF8(s_Common); oFile.CloseFile(); } }; } #endif // #ifndef DEFAULT_THEME_WRITER