mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 06:24:28 +08:00
17 lines
328 B
C++
17 lines
328 B
C++
#pragma once
|
|
#ifndef ODT_UNIT_INCLUDE_H_
|
|
#define ODT_UNIT_INCLUDE_H_
|
|
|
|
#include "Utility.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
typedef Unit<double, Pt> UnitPt;
|
|
typedef Unit<double, Cm, 3> UnitCm;
|
|
typedef Unit<int, Multi> UnitMulti;
|
|
typedef Unit<int, Percent> UnitPercent;
|
|
|
|
} // namespace Odt
|
|
|
|
#endif // ODT_UNIT_INCLUDE_H_
|