mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 01:26:56 +08:00
17 lines
273 B
C++
17 lines
273 B
C++
#pragma once
|
|
#ifndef ODT_NAMESPACE_OWN_INCLUDE_H_
|
|
#define ODT_NAMESPACE_OWN_INCLUDE_H_
|
|
|
|
#include "Namespaces.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
class NamespaceOwn
|
|
{
|
|
protected:
|
|
static const Namespaces ns;
|
|
};
|
|
} // namespace Odt
|
|
|
|
#endif // ODT_NAMESPACE_OWN_INCLUDE_H_
|