orca-robotics INTRODUCTION Overview Download and Install Quick Start Documentation Publications REPOSITORY Interfaces Components Libraries Utilities Software Map DEVELOPER Tutorials Examples Dev Guide Dashboard Wiki login/pass: orca/orca PEOPLE Contributors Users Project Download Mailing lists
|
logreaderinfo.h00001 #ifndef ORCALOG_LOGREADERINFO_H 00002 #define ORCALOG_LOGREADERINFO_H 00003 00004 #include <string> 00005 #include <orcaice/context.h> 00006 #include <orcalog/masterfilereader.h> 00007 00008 namespace orcalog { 00009 00019 class LogReaderInfo { 00020 public: 00021 00022 LogReaderInfo( const orcaice::Context &theContext ) 00023 : context(theContext) 00024 {} 00025 00026 std::string interfaceType; 00027 std::string interfaceName; 00028 std::string format; 00029 std::string filename; 00030 orcaice::Context context; 00031 }; 00032 00033 } 00034 00035 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)