-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincludes.hh
98 lines (82 loc) · 2.4 KB
/
includes.hh
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#ifndef __includes__
#define __includes__
#include <alloca.h>
#include <stddef.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <errno.h>
#include <error.h>
#include <libgen.h>
#include <pwd.h>
#include <shadow.h>
#include <grp.h>
#include <limits.h>
#include <errno.h>
#include <dirent.h>
#include <getopt.h>
#include <stdio.h>
#include <malloc.h>
#include <regex.h>
#include <string.h>
#include <stdlib.h>
#include <sys/sysmacros.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/wait.h>
#include <sys/time.h>
/*
#include <zbcl/plain_cpp/free_functions/crypt-functions.hh>
#include <zbcl/plain_cpp/free_functions/conversion.hh>
#include <zbcl/plain_cpp/free_functions/exec-functions.hh>
#include <zbcl/plain_cpp/free_functions/filesystem-functions.hh>
#include <zbcl/plain_cpp/free_functions/file-functions.hh>
#include <zbcl/plain_cpp/free_functions/user-admin.hh>
#include <zbcl/plain_cpp/free_functions/apache-functions-ext.hh>
#include <zbcl/plain_c/file-functions.h>
#include <zbcl/plain_c/array-functions.h>
#include <zbcl/plain_c/string-functions.h>
#include <zbcl/plain_c/apache-functions-ext.h>
#include <zbcl/plain_c/user-functions.h>
#include <zbcl/plain_c/time-functions.h>
*/
#include <vector>
#include <string>
#include <memory>
#include <odb/core.hxx>
#include <odb/database.hxx>
#include <odb/transaction.hxx>
#include <odb/session.hxx>
#include <odb/schema-catalog.hxx>
#include <odb/nullable.hxx>
#include <odb/lazy-ptr.hxx>
#include <odb/pgsql/database.hxx>
//#include <odb/mysql/database.hxx>
#include <odb/sqlite/database.hxx>
#include <odb/sqlite/connection-factory.hxx>
// Include TR1 <memory> header in a compiler-specific fashion. Fall back
// on the Boost implementation if the compiler does not support TR1.
//
#include <odb/tr1/memory.hxx>
#include <boost/optional.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <boost/filesystem/operations.hpp>
#include <soap-includes.hh>
#include <common_functions.h>
#include <misc_soap_functions.h>
#include <soap_ssl_helpers.h>
using namespace std;
using namespace odb::core;
//namespace pf = plain_cpp::free_functions;
//using namespace pf;
using std::shared_ptr;
using std::weak_ptr;
using std::unique_ptr;
using namespace boost::uuids;
namespace fs = boost::filesystem;
#endif