36 lines
861 B
C++
36 lines
861 B
C++
#pragma once
|
|
#include "word/WApplication.h"
|
|
#include "word/WDocument.h"
|
|
#include "word/WRange.h"
|
|
#include "word/WDocuments.h"
|
|
#include "word/WBookmark.h"
|
|
#include "word/WBookmarks.h"
|
|
#include "word/WCell.h"
|
|
#include "word/WColumn.h"
|
|
#include "word/WColumns.h"
|
|
#include "word/WComment.h"
|
|
#include "word/WComments.h"
|
|
#include "word/WRow.h"
|
|
#include "word/WRows.h"
|
|
#include "word/WTable.h"
|
|
#include "word/WTables.h"
|
|
|
|
#include "excel/EXLApplication.h"
|
|
#include "excel/EXLRange.h"
|
|
#include "excel/EXLRanges.h"
|
|
#include "excel/EXLWorkbook.h"
|
|
#include "excel/EXLWorkbooks.h"
|
|
#include "excel/EXLWorksheet.h"
|
|
#include "excel/EXLWorksheets.h"
|
|
|
|
#define T2VT(T) _variant_t(T)
|
|
|
|
namespace MSO {
|
|
using SizeT = int32_t;
|
|
|
|
extern COleVariant ovTrue;
|
|
extern COleVariant ovFalse;
|
|
extern COleVariant ovOptional;
|
|
|
|
static constexpr SizeT FIRST_INDEX{ 1 };
|
|
} // namespace MSO
|