]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dbtable.h
Added zillions of #if wxUSE_XXX
[wxWidgets.git] / include / wx / dbtable.h
index fe52615bce1448dccd8842cb5c55d08c79fb0404..004f02a2992f59d3e4464123ed7fa9bec1345901 100644 (file)
@@ -43,7 +43,7 @@ const int ROWID_LEN = 24;  // 18 is the max, 24 is in case it gets larger
 // source, exchange data between the data source and the C++
 // object, and so on.
 
-class CcolDef
+class WXDLLEXPORT CcolDef
 {
 public:
        char    ColName[DB_MAX_COLUMN_NAME_LEN+1];      // Column Name  glt 4/19/97 added one for the null terminator
@@ -59,14 +59,14 @@ public:
 };  // CcolDef
 
 // This structure is used when creating secondary indexes.
-class CidxDef
+class WXDLLEXPORT CidxDef
 {
 public:
        char ColName[DB_MAX_COLUMN_NAME_LEN+1]; // Column Name  glt 4/19/97 added one for the null terminator
        bool Ascending;
 };  // CidxDef
 
-class wxTable
+class WXDLLEXPORT wxTable
 {
 private: