CARMA C++
MasterOfNone.h
Go to the documentation of this file.
1 
9 #ifndef CARMA_CANBUS_MASTEROFNONE_H
10 #define CARMA_CANBUS_MASTEROFNONE_H
11 
12 // Carma includes
13 #include "carma/canbus/Master.h"
14 
15 namespace carma {
16 namespace canbus {
17 
33  public:
34 
41  MasterOfNone(int boardId, int canbus);
42 
48  MasterOfNone(int boardId);
49 
53  ~MasterOfNone();
54 
55  protected:
56 
57  // There are no protected methods.
58 
59  private:
60 
61  // No-op
62  void updateStatus();
63 
64  // Again, disallow copying and assignment.
65  MasterOfNone(const MasterOfNone &);
66  MasterOfNone &operator=(const MasterOfNone &);
67 
68  }; // End class MasterOfNone.
69 }} // End namespace carma::canbus
70 #endif
Carma CAN MasterOfNone class.
Definition: MasterOfNone.h:32
Declaration of carma::canbus::Master class.
MasterOfNone(int boardId, int canbus)
Constructor for single CANbus.
Carma Canbus Master class.
Definition: Master.h:110