]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/version.h
mac paths updated
[wxWidgets.git] / interface / version.h
index 2fedd80c3c0b812e04484dd8bd606d723bedd42a..d3a15946d322b40a02caed8db707833f22ce8c5f 100644 (file)
 /**
     This is a macro which evaluates to @true if the current wxWidgets version
     is at least major.minor.release.
 /**
     This is a macro which evaluates to @true if the current wxWidgets version
     is at least major.minor.release.
-    
+
     For example, to test if the program is compiled with wxWidgets 2.2 or
     higher, the following can be done:
     For example, to test if the program is compiled with wxWidgets 2.2 or
     higher, the following can be done:
-    
+
     @code
         wxString s;
     #if wxCHECK_VERSION(2, 2, 0)
     @code
         wxString s;
     #if wxCHECK_VERSION(2, 2, 0)
             ...
         }
     @endcode
             ...
         }
     @endcode
+
+    @header{wx/version.h}
 */
 #define wxCHECK_VERSION( major, minor, release )
 
 /**
     Same as wxCHECK_VERSION() but also checks that wxSUBRELEASE_NUMBER is at
     least subrel.
 */
 #define wxCHECK_VERSION( major, minor, release )
 
 /**
     Same as wxCHECK_VERSION() but also checks that wxSUBRELEASE_NUMBER is at
     least subrel.
+
+    @header{wx/version.h}
 */
 #define wxCHECK_VERSION_FULL( major, minor, release, subrel )
 
 */
 #define wxCHECK_VERSION_FULL( major, minor, release, subrel )