Added a parse of the basic structure of the OFD format

This commit is contained in:
Green
2025-03-10 14:21:25 +03:00
parent e1274dadea
commit 4d23382c92
13 changed files with 706 additions and 0 deletions

35
OFDFile/OFDFile.pro Normal file
View File

@ -0,0 +1,35 @@
QT -= core gui
VERSION = 1.0.0.1
TARGET = OFDFile
TEMPLATE = lib
CONFIG += shared
CONFIG += plugin
CORE_ROOT_DIR = $$PWD/..
PWD_ROOT_DIR = $$PWD
include($$CORE_ROOT_DIR/Common/base.pri)
include($$CORE_ROOT_DIR/Common/3dParty/boost/boost.pri)
DEFINES += OFD_USE_DYNAMIC_LIBRARY
ADD_DEPENDENCY(graphics, kernel, UnicodeConverter)
HEADERS += \
OFDFile.h \
src/Base.h \
src/Document.h \
src/Page.h \
src/PublicRes.h
SOURCES += \
OFDFile.cpp \
src/Base.cpp \
src/Document.cpp \
src/Page.cpp \
src/PublicRes.cpp
HEADERS += $$CORE_ROOT_DIR/OOXML/Base/Unit.h
SOURCES += $$CORE_ROOT_DIR/OOXML/Base/Unit.cpp