VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
IO
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
10
class
VTK_IO_EXPORT
vtkMySQLDatabasePrivate
11
{
12
public
:
13
vtkMySQLDatabasePrivate
() :
14
Connection( NULL )
15
{
16
mysql_init( &this->NullConnection );
17
}
18
19
MYSQL
NullConnection
;
20
MYSQL *
Connection
;
21
};
22
23
#endif // __vtkMySQLDatabasePrivate_h
Generated on Wed May 30 2012 13:22:18 for VTK by
1.8.1