]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/affinematrix2dbase.h
Implement wxNotificationMessage using libnotify in wxGTK.
[wxWidgets.git] / include / wx / affinematrix2dbase.h
index 9a70402e53d1f2ccdd4a2100be525d6bf038456b..94b1955aa3b781f2655acd486e6514b6fa7b0c70 100644 (file)
@@ -4,13 +4,16 @@
 // Author:       Catalin Raceanu
 // Created:      2011-04-06
 // Copyright:    (c) wxWidgets team
-// Licence:      wxWidgets licence
+// Licence:      wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_AFFINEMATRIX2DBASE_H_
 #define _WX_AFFINEMATRIX2DBASE_H_
 
 #include "wx/defs.h"
+
+#if wxUSE_GEOMETRY
+
 #include "wx/geometry.h"
 
 struct wxMatrix2D
@@ -37,7 +40,7 @@ class WXDLLIMPEXP_CORE wxAffineMatrix2DBase
 public:
     wxAffineMatrix2DBase() {}
     virtual ~wxAffineMatrix2DBase() {}
-    
+
     // sets the matrix to the respective values
     virtual void Set(const wxMatrix2D& mat2D, const wxPoint2DDouble& tr) = 0;
 
@@ -119,4 +122,6 @@ protected:
         wxPoint2DDouble DoTransformDistance(const wxPoint2DDouble& p) const = 0;
 };
 
+#endif // wxUSE_GEOMETRY
+
 #endif // _WX_AFFINEMATRIX2DBASE_H_