IBR-DTNSuite  0.8
daemon/src/storage/SQLiteConfigure.h
Go to the documentation of this file.
00001 /*
00002  * SQLiteConfigure.h
00003  *
00004  *  Created on: 30.03.2010
00005  *      Author: Myrtus
00006  */
00007 
00008 #ifndef SQLITECONFIGURE_H_
00009 #define SQLITECONFIGURE_H_
00010 #include "ibrcommon/thread/Mutex.h"
00011 
00012 namespace dtn{
00013 namespace storage{
00014         class SQLiteConfigure{
00015         public:
00016                 static void configure();
00017                 static void shutdown();
00018 
00019         private:
00020                 SQLiteConfigure(){};
00021                 static ibrcommon::Mutex _mutex;
00022                 static bool _isSet;
00023         };
00024 }
00025 }
00026 #endif /* SQLITECONFIGURE_H_ */