SeaBreeze
BusFamily.h
Go to the documentation of this file.
1 /***************************************************/
32 #ifndef BUSFAMILY_H
33 #define BUSFAMILY_H
34 
35 #include <string>
36 
37 namespace seabreeze {
38  class BusFamily {
39  public:
40  virtual ~BusFamily();
41  virtual std::string getName() const;
42  virtual bool equals(const BusFamily &that);
43 
44  protected:
45  BusFamily(std::string name, int id);
46 
47  private:
48  std::string busName;
49  int type;
50  };
51 
52 }
53 
54 #endif /* BUSFAMILY_H */
Definition: BusFamily.h:38
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42