INTRODUCTION Overview Download and Install Quick Start Documentation Publications NONFRAMEWORK CODE Driver Interfaces Drivers Libraries Utilities FRAMEWORK CODE Interfaces Components Libraries Utilities Full Software Listings DEVELOPER Tutorials Examples Dev Guide Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
formatcheckutil.h00001 #ifndef ORCALOG_FORMATCHECKUTIL_H 00002 #define ORCALOG_FORMATCHECKUTIL_H 00003 00004 #include <orcalog/logreader.h> 00005 00006 namespace orcalog { 00007 00008 // Format-checking for readers 00009 void checkFormats( const orcalog::LogReaderInfo &logReaderInfo, 00010 const std::vector<std::string> &okFormats ); 00011 void checkFormatDefaultsOnly( const orcalog::LogReaderInfo &logReaderInfo ); 00012 void checkFormatDefaultsOrAscii( const orcalog::LogReaderInfo &logReaderInfo ); 00013 00014 // Format-checking for writers 00015 void checkFormats( const std::string &format, 00016 const std::vector<std::string> &okFormats ); 00017 void checkFormatDefaultsOnly( const std::string &format ); 00018 void checkFormatDefaultsOrAscii( const std::string &format ); 00019 00020 } 00021 00022 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)