xlnt/source/detail/constants.hpp

42 lines
1.0 KiB
C++
Raw Normal View History

2014-05-21 22:20:30 +08:00
#pragma once
#include <string>
#include <unordered_map>
#include <xlnt/cell/types.hpp>
2014-05-22 05:48:51 +08:00
2014-05-21 22:20:30 +08:00
namespace xlnt {
struct constants
{
static const row_t MinRow();
static const row_t MaxRow();
static const column_t MinColumn();
static const column_t MaxColumn();
2014-05-21 22:20:30 +08:00
// constants
static const string PackageProps();
static const string PackageXl();
static const string PackageRels();
static const string PackageTheme();
static const string PackageWorksheets();
static const string PackageDrawings();
static const string PackageCharts();
static const string ArcContentTypes();
static const string ArcRootRels();
static const string ArcWorkbookRels();
static const string ArcCore();
static const string ArcApp();
static const string ArcWorkbook();
static const string ArcStyles();
static const string ArcTheme();
static const string ArcSharedString();
static const std::unordered_map<string, string> Namespaces();
2015-11-03 05:45:05 +08:00
static const string Namespace(const string &id);
2014-05-21 22:20:30 +08:00
};
2014-05-21 22:20:30 +08:00
} // namespace xlnt