Files
myink/PositionalProperties_t.hpp
stubbfelnewpc 443f999d77 add testblock
2020-05-06 00:07:20 +02:00

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