00001 /* 00002 Copyright (C) 2002 the Strongroom project 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Lesser General Public 00006 License as published by the Free Software Foundation; either 00007 version 2.1 of the License, or (at your option) any later version. 00008 00009 @author Denis de Leeuw Duarte 00010 */ 00011 00012 #include <string> 00013 00020 using namespace std; 00021 00022 class Query 00023 { 00024 public: 00025 00030 Query( string query ); 00031 00032 ~Query(); 00033 00040 string getQueryAsString(); 00041 00042 private: 00043 00044 string querystring; 00045 00046 };