4.06.2013 - Version 0.3.4 - PIOBJECT() macro, ethernet improvement, documentation based on Doxygen

This commit is contained in:
peri4
2013-06-04 21:28:15 +04:00
parent 02c629d6a8
commit 9111640ca8
53 changed files with 3019 additions and 910 deletions

View File

@@ -23,7 +23,7 @@
#include "pimath.h"
template<typename Type>
class PIPoint {
class PIP_EXPORT PIPoint {
public:
Type x;
Type y;
@@ -55,7 +55,7 @@ template<typename Type>
std::ostream & operator <<(std::ostream & s, const PIPoint<Type> & v) {s << '{' << v.x << ", " << v.y << '}'; return s;}
template<typename Type>
class PIRect {
class PIP_EXPORT PIRect {
public:
Type x0;
Type y0;