mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
19 lines
350 B
C++
19 lines
350 B
C++
#pragma once
|
|
#ifndef OOX_NAMESPACE_OWN_INCLUDE_H_
|
|
#define OOX_NAMESPACE_OWN_INCLUDE_H_
|
|
|
|
#include "Namespaces.h"
|
|
|
|
namespace PPTX
|
|
{
|
|
class NamespaceOwn
|
|
{
|
|
protected:
|
|
//static const Namespaces ns;
|
|
};
|
|
|
|
//const Namespaces NamespaceOwn::ns;
|
|
static Namespaces g_Namespaces;
|
|
} // namespace PPTX
|
|
|
|
#endif // OOX_NAMESPACE_OWN_INCLUDE_H_
|