summaryrefslogtreecommitdiff
path: root/project2/sql/pch.hpp
blob: f1ff8426747892b60c6070e94ce159b9e5e8ee8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifdef BOOST_BUILD_PCH_ENABLED
#ifndef SQL_PCH
#define SQL_PCH

#include "cache.h"
#include "column.h"
#include "columns.h"
#include "command.h"
#include "commonObjects.h"
#include "connectionLoader.h"
#include "exceptions.h"
#include "iHaveParameters.h"
#include "logger.h"
#include "modifycommand.h"
#include "rdbmsDataSource.h"
#include "rowProcessor.h"
#include "rowSet.h"
#include "selectcommand.h"
#include "sqlHandleAsVariableType.h"
#include "sqlVariableBinder.h"
#include "sqlWriter.h"
#include "variables.h"
#include "scriptLoader.h"
#include "scripts.h"
#include <boost/bind.hpp>
#include <boost/foreach.hpp>
#include "options.h"
#include <buffer.h>
#include <column.h>
#include <errno.h>
#include <stdexcept>

#endif
#endif