00001 /*************************************************************************** 00002 stripper.h 00003 ------------------- 00004 begin : Fri Feb 1 2002 00005 copyright : (C) 2002 by Constantinos A. Kotsokalis 00006 email : ckotso@grnet.gr 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef STRIPPER_H 00019 #define STRIPPER_H 00020 00021 using namespace std; 00022 00023 #include <string> 00024 00028 class Stripper { 00029 public: 00031 Stripper(); 00033 virtual ~Stripper(); 00039 string Strip(string); 00040 }; 00041 00042 #endif
1.2.18