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