CARMA C++
CarmaSeqNum.h
Go to the documentation of this file.
1 // $Id: CarmaSeqNum.h,v 1.2 2010/12/13 20:52:26 eml Exp $
2 
3 #ifndef SZA_ANTENNA_CORBA_CARMASEQNUM_H
4 #define SZA_ANTENNA_CORBA_CARMASEQNUM_H
5 
15 #include "carma/szautil/Mutex.h"
16 
17 namespace sza {
18  namespace antenna {
19  namespace corba {
20 
21  class CarmaSeqNum {
22  public:
23 
27  CarmaSeqNum();
28 
32  virtual ~CarmaSeqNum();
33 
34  void setSeq(unsigned seq, bool success);
35 
36  unsigned getSeq();
37  bool getSuccess();
38 
39  private:
40 
41  unsigned seq_;
42  bool success_;
43  sza::util::Mutex guard_;
44 
45  }; // End class CarmaSeqNum
46 
47  } // End namespace corba
48  } // End namespace antenna
49 } // End namespace sza
50 
51 
52 
53 #endif // End #ifndef SZA_ANTENNA_CORBA_CARMASEQNUM_H
Tagged: Sat Mar 27 16:28:13 PST 2004.