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
|
logwriterinfo.h00001 #ifndef ORCALOG_LOGWRITERINFO_H 00002 #define ORCALOG_LOGWRITERINFO_H 00003 00004 #include <string> 00005 #include <orcaice/context.h> 00006 #include <orcalog/masterfilewriter.h> 00007 00008 namespace orcalog { 00009 00010 00025 class LogWriterInfo { 00026 public: 00027 00028 // LogWriterInfo( MasterFileWriter &theMasterFileWriter, 00029 // const orcaice::Context &theContext ) 00030 // // : masterFileWriter(theMasterFileWriter), 00031 // : context(theContext) 00032 // {} 00033 00034 LogWriterInfo( const orcaice::Context &theContext ) 00035 : context(theContext) 00036 {} 00037 00038 std::string interfaceType; 00039 std::string interfaceTag; 00040 std::string comment; 00041 std::string format; 00042 std::string filename; 00043 // MasterFileWriter &masterFileWriter; 00044 orcaice::Context context; 00045 }; 00046 00047 } 00048 00049 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)