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
|
utils/systemtracermon/component.h00001 #ifndef COMPONENT_H 00002 #define COMPONENT_H 00003 00004 #include <orcaice/component.h> 00005 #include <orca/tracer.h> 00006 #include "tracerconsumerI.h" 00007 00008 namespace sysmon { 00009 00010 // 00011 // @author Alex Brooks 00012 // 00013 class Component : public orcaice::Component 00014 { 00015 00016 public: 00017 00018 Component(); 00019 00020 // component interface 00021 virtual void start(); 00022 virtual void stop(); 00023 00024 private: 00025 00026 void connectForTracingInfo( orca::TracerPrx tracerPrx ); 00027 00028 TracerConsumerI *tracerConsumer_; 00029 orca::TracerConsumerPrx callbackPrx_; 00030 }; 00031 00032 } 00033 00034 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)