Files
core/Common/ASCDocxFormat/Source/Common/ZIndex.h

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_