CARMA C++
CorbaObject.h
Go to the documentation of this file.
1 // $Id: CorbaObject.h,v 1.1 2010/10/19 21:09:24 eml Exp $
2 
3 #ifndef SZA_ANTENNA_CORBA_CORBAOBJECT_H
4 #define SZA_ANTENNA_CORBA_CORBAOBJECT_H
5 
15 namespace sza {
16  namespace antenna {
17  namespace corba {
18 
19  class CorbaObject {
20  public:
21 
25  CorbaObject(std::string name);
26 
30  virtual ~CorbaObject();
31 
35  void registerObject(const string& name);
36 
37  protected:
38 
39  std::string objectName;
40 
41  }; // End class CorbaObject
42 
43  } // End namespace corba
44  } // End namespace antenna
45 } // End namespace sza
46 
47 
48 
49 #endif // End #ifndef SZA_ANTENNA_CORBA_CORBAOBJECT_H