mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 15:09:40 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
#pragma once
|
|
#ifndef OOX_NAMESPACES_INCLUDE_H_
|
|
#define OOX_NAMESPACES_INCLUDE_H_
|
|
|
|
#include "XML.h"
|
|
|
|
namespace OOX
|
|
{
|
|
class Namespaces
|
|
{
|
|
public:
|
|
Namespaces();
|
|
|
|
public:
|
|
const XML::XNamespace a;
|
|
const XML::XNamespace b;
|
|
const XML::XNamespace cdr;
|
|
const XML::XNamespace cp;
|
|
const XML::XNamespace dc;
|
|
const XML::XNamespace dchrt;
|
|
const XML::XNamespace dcmitype;
|
|
const XML::XNamespace dcterms;
|
|
const XML::XNamespace ddgrm;
|
|
const XML::XNamespace dgm;
|
|
const XML::XNamespace dlckcnv;
|
|
const XML::XNamespace dpct;
|
|
const XML::XNamespace ds;
|
|
const XML::XNamespace m;
|
|
const XML::XNamespace o;
|
|
const XML::XNamespace p;
|
|
const XML::XNamespace pic;
|
|
const XML::XNamespace pvml;
|
|
const XML::XNamespace r;
|
|
const XML::XNamespace s;
|
|
const XML::XNamespace sl;
|
|
const XML::XNamespace v;
|
|
const XML::XNamespace ve;
|
|
const XML::XNamespace vp;
|
|
const XML::XNamespace vt;
|
|
const XML::XNamespace w;
|
|
const XML::XNamespace w10;
|
|
const XML::XNamespace wne;
|
|
const XML::XNamespace wp;
|
|
const XML::XNamespace x;
|
|
const XML::XNamespace xdr;
|
|
const XML::XNamespace xmlns;
|
|
const XML::XNamespace xsd;
|
|
const XML::XNamespace xsi;
|
|
};
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_NAMESPACES_INCLUDE_H_
|