mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 19:27:17 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
29 lines
370 B
C++
29 lines
370 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_common.h"
|
|
// auto inserted precompiled end
|
|
|
|
#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
|