mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 23:02:34 +08:00
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_
|