mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 01:10:35 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
363 B
C++
24 lines
363 B
C++
#pragma once
|
|
#ifndef COMMON_Z_INDEX_INCLUDE_H_
|
|
#define COMMON_Z_INDEX_INCLUDE_H_
|
|
|
|
#include "property.h"
|
|
|
|
|
|
namespace Common
|
|
{
|
|
class ZIndex
|
|
{
|
|
public:
|
|
ZIndex();
|
|
ZIndex(const int& index);
|
|
|
|
public:
|
|
property<int> Index;
|
|
|
|
protected:
|
|
void fromBase(const ZIndex& zIndex);
|
|
};
|
|
} // namespace Common
|
|
|
|
#endif // COMMON_Z_INDEX_INCLUDE_H_
|