src/QuotedString.cpp

Go to the documentation of this file.
00001 
00002 #include <iostream>
00003 #include "QuotedString.h"
00004 #include "SkipString.h"
00005 
00006 
00009 std::istream & operator>>(std::istream & is, QuotedString & str)
00010 {
00011     is >> std::ws >> SkipString("\"");
00012     std::getline(is, str.mStr, '"');
00013     return is;
00014 }
00015 
00016 

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