21 lines
336 B
C++
21 lines
336 B
C++
#ifndef POSITIONAL_PROPERTIES_T_H
|
|
#define POSITIONAL_PROPERTIES_T_H
|
|
|
|
#include <cstddef>
|
|
|
|
//namespace myink { namespace ui {
|
|
|
|
|
|
typedef struct PositionalProperties_t
|
|
{
|
|
size_t left;
|
|
size_t top;
|
|
size_t width;
|
|
size_t height;
|
|
} PositionalProperties, *PositionalPropertiesPtr;
|
|
|
|
|
|
|
|
//}}
|
|
|
|
#endif |