/home/martin/workspace/OpenStreetNav/src/sqllib/strings/SimpleSqlCreator.h
Go to the documentation of this file.
00001 /*
00002  * SimpleSqlCreator.h
00003  *
00004  *  Created on: Dec 5, 2011
00005  *      Author: martin
00006  */
00007 
00008 #ifndef SIMPLESQLCREATOR_H_
00009 #define SIMPLESQLCREATOR_H_
00010 
00011 #include "SqlCreator.h"
00012 
00013 namespace sqllib
00014 {
00015 
00016 class SimpleSqlCreator : public SqlCreator
00017 {
00018 public:
00019     SimpleSqlCreator(std::string const& sql);
00020     std::string create_sql();
00021 private:
00022     std::string sql;
00023 };
00024 
00025 } /* namespace sqllib */
00026 #endif /* SIMPLESQLCREATOR_H_ */
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines