00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef __GIGABASE_H__
00012 #define __GIGABASE_H__
00013
00014 #define GIGABASE_MAJOR_VERSION 3
00015 #define GIGABASE_MINOR_VERSION 62
00016 #define GIGABASE_VERSION (GIGABASE_MAJOR_VERSION*100 + GIGABASE_MINOR_VERSION)
00017
00018 #include "database.h"
00019 #include "array.h"
00020 #include "query.h"
00021 #include "cursor.h"
00022 #include "datetime.h"
00023 #include "blob.h"
00024 #include "container.h"
00025
00026 #ifdef THROW_EXCEPTION_ON_ERROR
00027 #include "exception.h"
00028 #endif
00029
00030 #endif