Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:12

0001 #ifndef FWCore_Utilities_Parse_h
0002 #define FWCore_Utilities_Parse_h
0003 
0004 #include <string>
0005 #include <vector>
0006 namespace edm {
0007   /// only does the yacc interpretation
0008   std::string read_whole_file(std::string const& filename);
0009 
0010   void read_from_cin(std::string& output);
0011 
0012   std::string withoutQuotes(std::string const& from);
0013 
0014   /// breaks the input string into tokens, delimited by the separator
0015   std::vector<std::string> tokenize(std::string const& input, std::string const& separator);
0016 }  // namespace edm
0017 
0018 #endif