diff --git a/OdfFile/Common/CPString.cpp b/OdfFile/Common/CPString.cpp index 4a781bc7b6..052f68a0db 100644 --- a/OdfFile/Common/CPString.cpp +++ b/OdfFile/Common/CPString.cpp @@ -29,8 +29,8 @@ * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode * */ -#include "../../Common/CPString.h" -#include "../../../DesktopEditor/common/File.h" +#include "CPString.h" +#include "../../DesktopEditor/common/File.h" namespace cpdoccore { diff --git a/OdfFile/DataTypes/errors.h b/OdfFile/Common/errors.h similarity index 100% rename from OdfFile/DataTypes/errors.h rename to OdfFile/Common/errors.h diff --git a/OdfFile/Common/logging.cpp b/OdfFile/Common/logging.cpp new file mode 100644 index 0000000000..68f0486df3 --- /dev/null +++ b/OdfFile/Common/logging.cpp @@ -0,0 +1,41 @@ +/* + * (c) Copyright Ascensio System SIA 2010-2019 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * + */ + +#include "logging.h" +#include + +namespace cpdoccore { + +logging< std::wostream > logging_err(std::wcerr); +logging< std::wostream > logging_cout(std::wcout); + +} diff --git a/OdfFile/Common/readstring.h b/OdfFile/Common/readstring.h index bee9c56534..34261d8c23 100644 --- a/OdfFile/Common/readstring.h +++ b/OdfFile/Common/readstring.h @@ -31,7 +31,7 @@ */ #pragma once -#include +#include "../Common/CPOptional.h" #include "logging.h" namespace cpdoccore { diff --git a/OdfFile/Common/xml/sax.cpp b/OdfFile/Common/xml/sax.cpp index fe2c5a18db..dad973481c 100644 --- a/OdfFile/Common/xml/sax.cpp +++ b/OdfFile/Common/xml/sax.cpp @@ -30,7 +30,7 @@ * */ -#include "../Common/CPSharedPtr.h" +#include "../CPSharedPtr.h" #include "sax.h" #include "sax_xmllite.h" #include diff --git a/OdfFile/Common/xml/sax.h b/OdfFile/Common/xml/sax.h index 773f254a2e..ae9456a698 100644 --- a/OdfFile/Common/xml/sax.h +++ b/OdfFile/Common/xml/sax.h @@ -36,7 +36,7 @@ #include #include -#include "../Common/CPSharedPtr.h" +#include "../CPSharedPtr.h" #include "nodetype.h" namespace cpdoccore { diff --git a/OdfFile/Common/xml/sax_xmllite.h b/OdfFile/Common/xml/sax_xmllite.h index 0a4bf92d0a..b6b853f72a 100644 --- a/OdfFile/Common/xml/sax_xmllite.h +++ b/OdfFile/Common/xml/sax_xmllite.h @@ -32,7 +32,7 @@ #pragma once #include "sax.h" -#include "../Common/CPSharedPtr.h" +#include "../CPSharedPtr.h" namespace cpdoccore { namespace xml { diff --git a/OdfFile/Common/xml/utils.cpp b/OdfFile/Common/xml/utils.cpp index 8aa2756a8b..4dbad80e05 100644 --- a/OdfFile/Common/xml/utils.cpp +++ b/OdfFile/Common/xml/utils.cpp @@ -32,7 +32,7 @@ #include "utils.h" #include -#include "../../OOXML/Base/Unit.h" +#include "../../../OOXML/Base/Unit.h" namespace cpdoccore { namespace xml { diff --git a/OdfFile/DataTypes/common_attlists.h b/OdfFile/DataTypes/common_attlists.h index 9b501c0ff8..b135960f8d 100644 --- a/OdfFile/DataTypes/common_attlists.h +++ b/OdfFile/DataTypes/common_attlists.h @@ -32,7 +32,7 @@ #pragma once #include -#include +#include "../Common/xml/simple_xml_writer.h" #include "bool.h" #include "lengthorpercent.h" diff --git a/OdfFile/DataTypes/lengthorpercent.cpp b/OdfFile/DataTypes/lengthorpercent.cpp index ec608ba8b6..aef469a570 100644 --- a/OdfFile/DataTypes/lengthorpercent.cpp +++ b/OdfFile/DataTypes/lengthorpercent.cpp @@ -32,7 +32,7 @@ #include #include "lengthorpercent.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/linemode.cpp b/OdfFile/DataTypes/linemode.cpp index d18ee2f8b2..0c84f61194 100644 --- a/OdfFile/DataTypes/linemode.cpp +++ b/OdfFile/DataTypes/linemode.cpp @@ -32,7 +32,7 @@ #include #include "linemode.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/linestyle.cpp b/OdfFile/DataTypes/linestyle.cpp index ee5d0e7286..da38e4bbc2 100644 --- a/OdfFile/DataTypes/linestyle.cpp +++ b/OdfFile/DataTypes/linestyle.cpp @@ -32,7 +32,7 @@ #include #include "linestyle.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/linetype.cpp b/OdfFile/DataTypes/linetype.cpp index cef496c6f4..876184cd7c 100644 --- a/OdfFile/DataTypes/linetype.cpp +++ b/OdfFile/DataTypes/linetype.cpp @@ -32,7 +32,7 @@ #include #include "linetype.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/linewidth.cpp b/OdfFile/DataTypes/linewidth.cpp index 617acbf84f..05974b949f 100644 --- a/OdfFile/DataTypes/linewidth.cpp +++ b/OdfFile/DataTypes/linewidth.cpp @@ -32,7 +32,7 @@ #include #include "linewidth.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/mathvariant.h b/OdfFile/DataTypes/mathvariant.h index 560e633109..c0560a174d 100644 --- a/OdfFile/DataTypes/mathvariant.h +++ b/OdfFile/DataTypes/mathvariant.h @@ -32,7 +32,7 @@ #pragma once #include -#include +#include "../Common/CPOptional.h" #include "odfattributes.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/odfattributes.h b/OdfFile/DataTypes/odfattributes.h index 016f9a09f4..5585881afb 100644 --- a/OdfFile/DataTypes/odfattributes.h +++ b/OdfFile/DataTypes/odfattributes.h @@ -31,9 +31,9 @@ */ #pragma once -#include -#include -#include "errors.h" +#include "../Common/xml/attributes.h" +#include "../Common/CPOptional.h" +#include "../Common/errors.h" #include "../Common/logging.h" namespace cpdoccore { diff --git a/OdfFile/DataTypes/officevaluetype.cpp b/OdfFile/DataTypes/officevaluetype.cpp index 235882d4bc..68a3704a4d 100644 --- a/OdfFile/DataTypes/officevaluetype.cpp +++ b/OdfFile/DataTypes/officevaluetype.cpp @@ -32,7 +32,7 @@ #include #include "officevaluetype.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/percent.cpp b/OdfFile/DataTypes/percent.cpp index 8bbbb14ae6..8152707259 100644 --- a/OdfFile/DataTypes/percent.cpp +++ b/OdfFile/DataTypes/percent.cpp @@ -33,7 +33,7 @@ #include "percent.h" #include #include -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/percentorscale.cpp b/OdfFile/DataTypes/percentorscale.cpp index 33d9f36455..433b636583 100644 --- a/OdfFile/DataTypes/percentorscale.cpp +++ b/OdfFile/DataTypes/percentorscale.cpp @@ -32,7 +32,7 @@ #include #include "percentorscale.h" -#include "errors.h" +#include "../Common/errors.h" namespace cpdoccore { namespace odf_types { diff --git a/OdfFile/DataTypes/textemphasize.cpp b/OdfFile/DataTypes/textemphasize.cpp index a741eef07f..b3ca37219f 100644 --- a/OdfFile/DataTypes/textemphasize.cpp +++ b/OdfFile/DataTypes/textemphasize.cpp @@ -31,7 +31,7 @@ */ #include "textemphasize.h" -#include "errors.h" +#include "../Common/errors.h" #include diff --git a/OdfFile/DataTypes/textposition.cpp b/OdfFile/DataTypes/textposition.cpp index 12923c028c..ed5a89758a 100644 --- a/OdfFile/DataTypes/textposition.cpp +++ b/OdfFile/DataTypes/textposition.cpp @@ -31,7 +31,7 @@ */ #include "textposition.h" -#include "errors.h" +#include "../Common/errors.h" #include diff --git a/OdfFile/DataTypes/texttransform.cpp b/OdfFile/DataTypes/texttransform.cpp index 855a2e3fca..abeb533c7c 100644 --- a/OdfFile/DataTypes/texttransform.cpp +++ b/OdfFile/DataTypes/texttransform.cpp @@ -32,7 +32,7 @@ #include #include "texttransform.h" -#include "errors.h" +#include "../Common/errors.h" #include diff --git a/OdfFile/Projects/Linux/OdfFormatLib.pro b/OdfFile/Projects/Linux/OdfFormatLib.pro index b43012c1f1..c3ee3faf09 100644 --- a/OdfFile/Projects/Linux/OdfFormatLib.pro +++ b/OdfFile/Projects/Linux/OdfFormatLib.pro @@ -495,7 +495,6 @@ HEADERS += \ ../../DataTypes/direction.h \ ../../DataTypes/drawfill.h \ ../../DataTypes/dropcaplength.h \ - ../../DataTypes/errors.h \ ../../DataTypes/fillimagerefpoint.h \ ../../DataTypes/fobreak.h \ ../../DataTypes/fontfamilygeneric.h \ @@ -659,6 +658,7 @@ HEADERS += \ ../../Reader/Converter/conversionelement.h \ ../../Reader/Converter/ConvertOO2OOX.h \ ../../Common/xml/sax_xmllite.h \ + ../../Common/errors.h \ ../../Common/logging.h \ ../../Common/CPColorUtils.h \ ../../Common/CPNoncopyable.h \ diff --git a/OdfFile/Projects/Windows/OdfFileTest/OdfFile.sln b/OdfFile/Projects/Windows/OdfFileTest/OdfFile.sln index fb33936200..388161a419 100644 --- a/OdfFile/Projects/Windows/OdfFileTest/OdfFile.sln +++ b/OdfFile/Projects/Windows/OdfFileTest/OdfFile.sln @@ -6,11 +6,8 @@ MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OdfFileReaderTest", "OdfFileTest.vcxproj", "{C2882DDD-07E6-4314-AD4B-48F43F38D722}" ProjectSection(ProjectDependencies) = postProject {41BED424-4EAF-4053-8A5F-1E2A387D53D1} = {41BED424-4EAF-4053-8A5F-1E2A387D53D1} - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} = {3423EC9A-52E4-4A4D-9753-EDEBC38785EF} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cryptlib", "..\..\Common\3dParty\cryptopp\cryptlib.vcxproj", "{3423EC9A-52E4-4A4D-9753-EDEBC38785EF}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OdfCommon", "..\cpcommon.vcxproj", "{609ED938-3CA8-4BED-B363-25096D4C4812}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OdfFormatReaderLib", "..\cpodf.vcxproj", "{50E20601-4A8D-4AFB-8870-63828D328429}" @@ -47,22 +44,6 @@ Global {C2882DDD-07E6-4314-AD4B-48F43F38D722}.Release|Win32.Build.0 = Release|Win32 {C2882DDD-07E6-4314-AD4B-48F43F38D722}.Release|x64.ActiveCfg = Release|x64 {C2882DDD-07E6-4314-AD4B-48F43F38D722}.Release|x64.Build.0 = Release|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.ActiveCfg = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|Win32.Build.0 = Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|x64.ActiveCfg = Debug|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Debug|x64.Build.0 = Debug|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Debug|Win32.ActiveCfg = DLL-Import Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Debug|Win32.Build.0 = DLL-Import Debug|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Debug|x64.ActiveCfg = DLL-Import Debug|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Debug|x64.Build.0 = DLL-Import Debug|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Release|Win32.ActiveCfg = DLL-Import Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Release|Win32.Build.0 = DLL-Import Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Release|x64.ActiveCfg = DLL-Import Release|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.DLL-Import Release|x64.Build.0 = DLL-Import Release|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.ActiveCfg = Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|Win32.Build.0 = Release|Win32 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|x64.ActiveCfg = Release|x64 - {3423EC9A-52E4-4A4D-9753-EDEBC38785EF}.Release|x64.Build.0 = Release|x64 {609ED938-3CA8-4BED-B363-25096D4C4812}.Debug|Win32.ActiveCfg = Debug|Win32 {609ED938-3CA8-4BED-B363-25096D4C4812}.Debug|Win32.Build.0 = Debug|Win32 {609ED938-3CA8-4BED-B363-25096D4C4812}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/OdfFile/Projects/Windows/OdfFileTest/OdfFileTest.vcxproj b/OdfFile/Projects/Windows/OdfFileTest/OdfFileTest.vcxproj index 4cca95750e..5bf9e8d760 100644 --- a/OdfFile/Projects/Windows/OdfFileTest/OdfFileTest.vcxproj +++ b/OdfFile/Projects/Windows/OdfFileTest/OdfFileTest.vcxproj @@ -182,11 +182,6 @@ - - - {3423ec9a-52e4-4a4d-9753-edebc38785ef} - - diff --git a/OdfFile/Projects/Windows/cpcommon.vcxproj b/OdfFile/Projects/Windows/cpcommon.vcxproj index 1413091a2c..c480cd71bb 100644 --- a/OdfFile/Projects/Windows/cpcommon.vcxproj +++ b/OdfFile/Projects/Windows/cpcommon.vcxproj @@ -69,8 +69,8 @@ $(Configuration)\ $(Configuration)\ - ..\..\Common\3dParty\boost\build\win_32\include;$(IncludePath) - ..\..\Common\3dParty\boost\build\win_32\lib;$(LibraryPath) + ..\..\..\Common\3dParty\boost\build\win_32\include;$(IncludePath) + ..\..\..\Common\3dParty\boost\build\win_32\lib;$(LibraryPath) $(Platform)\$(Configuration)\ @@ -164,256 +164,246 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OdfFile/Projects/Windows/cpcommon.vcxproj.filters b/OdfFile/Projects/Windows/cpcommon.vcxproj.filters index c1dd9a8dce..21d5187e03 100644 --- a/OdfFile/Projects/Windows/cpcommon.vcxproj.filters +++ b/OdfFile/Projects/Windows/cpcommon.vcxproj.filters @@ -1,690 +1,692 @@  - - {99b4ef49-83fb-4723-a3a5-93e6ede1ddb6} - {c5b21206-a811-4082-8df4-c8306b5518b0} - - include + + + + + + + + + datatypes odf - - include + + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - - - - - - - - - - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf + + + + + + - + + + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - - - - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf - + datatypes odf + + \ No newline at end of file diff --git a/OdfFile/Projects/Windows/cpodf.vcxproj b/OdfFile/Projects/Windows/cpodf.vcxproj index 177b1daae4..7432ad2c3f 100644 --- a/OdfFile/Projects/Windows/cpodf.vcxproj +++ b/OdfFile/Projects/Windows/cpodf.vcxproj @@ -171,371 +171,319 @@ - - - - - - - - - - - - - $(IntDir)%(Filename)1.obj - $(IntDir)%(Filename)1.xdc - $(IntDir)%(Filename)1.obj - $(IntDir)%(Filename)1.xdc - $(IntDir)%(Filename)1.obj - $(IntDir)%(Filename)1.xdc - $(IntDir)%(Filename)1.obj - $(IntDir)%(Filename)1.xdc - - - - - - - - - - - - - - - - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - /bigobj %(AdditionalOptions) - - - - - - - - /bigobj %(AdditionalOptions) - - - - - - - - /bigobj %(AdditionalOptions) - - - - - - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - /bigobj %(AdditionalOptions) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - /bigobj %(AdditionalOptions) - - - - - - - - - - - - /bigobj %(AdditionalOptions) - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/OdfFile/Projects/Windows/cpodf.vcxproj.filters b/OdfFile/Projects/Windows/cpodf.vcxproj.filters index 07ee3258e7..95d9b00d8e 100644 --- a/OdfFile/Projects/Windows/cpodf.vcxproj.filters +++ b/OdfFile/Projects/Windows/cpodf.vcxproj.filters @@ -1,12 +1,6 @@  - - {ecbc1bb6-05af-4043-8b7f-731cde436676} - - - {d2b29d16-77b4-4633-bb04-8098ca248b97} - {e8d90800-7021-4032-8d17-274da4aa8e51} @@ -31,923 +25,945 @@ {67b2bf43-5673-4a6f-82cb-fe4be01aee5f} + + {ecbc1bb6-05af-4043-8b7f-731cde436676} + - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + common + + + common + + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + + oox\oox + + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - - oox\oox\chart - - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx\styles - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - - style + + oox\xlsx\styles - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - utility + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - - style + + elements - + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + elements + + + common + + + common + + + common + + + common + + + common + + + common + + + common + + + common + + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - + oox\docx - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - - oox\xlsx\styles - - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + oox\oox - + + oox\oox + + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\oox\chart - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - + oox\pptx - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx\styles - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx - - elements + + oox\xlsx\styles - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - elements - - - - style + + oox\xlsx\styles \ No newline at end of file diff --git a/OdfFile/Projects/Windows/cpxml.vcxproj b/OdfFile/Projects/Windows/cpxml.vcxproj index 54a5ec7f2b..58e059bacf 100644 --- a/OdfFile/Projects/Windows/cpxml.vcxproj +++ b/OdfFile/Projects/Windows/cpxml.vcxproj @@ -18,6 +18,23 @@ x64 + + + + + + + + + + + + + + + + + xml_wrapper {41BED424-4EAF-4053-8A5F-1E2A387D53D1} @@ -69,8 +86,8 @@ $(Configuration)\ $(Configuration)\ - ..\..\Common\3dParty\boost\build\win_32\include;$(IncludePath) - ..\..\Common\3dParty\boost\build\win_32\lib;$(LibraryPath) + ..\..\..\Common\3dParty\boost\build\win_32\include;$(IncludePath) + ..\..\..\Common\3dParty\boost\build\win_32\lib;$(LibraryPath) $(Platform)\$(Configuration)\ diff --git a/OdfFile/Projects/Windows/cpxml.vcxproj.filters b/OdfFile/Projects/Windows/cpxml.vcxproj.filters index 9cd8510566..d15146676e 100644 --- a/OdfFile/Projects/Windows/cpxml.vcxproj.filters +++ b/OdfFile/Projects/Windows/cpxml.vcxproj.filters @@ -1,2 +1,20 @@  - \ No newline at end of file + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OdfFile/Projects/Windows/formulasconvert.vcxproj b/OdfFile/Projects/Windows/formulasconvert.vcxproj index 0167cec313..0315d242a8 100644 --- a/OdfFile/Projects/Windows/formulasconvert.vcxproj +++ b/OdfFile/Projects/Windows/formulasconvert.vcxproj @@ -18,6 +18,13 @@ x64 + + + + + + + OdfFormulasConvert {94954A67-A853-43B1-A727-6EF2774C5A6A} @@ -146,13 +153,6 @@ $(OutDir)$(ProjectName).lib - - - - - - -