src/SkipString.h

Go to the documentation of this file.
00001 #ifndef SKIPSTRING_H
00002 #define SKIPSTRING_H
00003 
00004 #include <iosfwd>
00005 #include <string>
00006 
00007 
00012 class SkipString
00013 {
00014     friend std::istream & operator>>(std::istream & is, const SkipString & skip);
00015 public:
00020     SkipString(const std::string & s)
00021         : mStr(s)
00022     {
00023     }
00024 
00025 private:
00027     std::string mStr;
00028 };
00029 
00030 
00033 std::istream & operator>>(std::istream & is, const SkipString & skip);
00034 
00035 
00036 #endif
00037 

Generated on Fri Feb 1 00:01:42 2008 for Grayfall by  doxygen 1.5.1