VTK
vtkMySQLDatabasePrivate.h
Go to the documentation of this file.
1 #ifndef __vtkMySQLDatabasePrivate_h
2 #define __vtkMySQLDatabasePrivate_h
3 
4 #ifdef _WIN32
5 # include <winsock.h> // mysql.h relies on the typedefs from here
6 #endif
7 
8 #include <mysql.h> // needed for MYSQL typedefs
9 
11 {
12 public:
14  Connection( NULL )
15  {
16  mysql_init( &this->NullConnection );
17  }
18 
20  MYSQL *Connection;
21 };
22 
23 #endif // __vtkMySQLDatabasePrivate_h