mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 11:55:36 +08:00
24 lines
263 B
C++
24 lines
263 B
C++
#include "ZIndex.h"
|
|
|
|
|
|
namespace Common
|
|
{
|
|
|
|
ZIndex::ZIndex()
|
|
: Index(0)
|
|
{
|
|
}
|
|
|
|
|
|
ZIndex::ZIndex(const int& index)
|
|
: Index(index)
|
|
{
|
|
}
|
|
|
|
|
|
void ZIndex::fromBase(const ZIndex& zIndex)
|
|
{
|
|
Index = zIndex.Index;
|
|
}
|
|
|
|
} // namespace Common
|