TactileVestProject  V1.0
Tactile API documentation
 All Classes Functions
Pager.h
1 #ifndef PAGER_H
2 #define PAGER_H
3 
4 #include <string>
5 #include "Tactor.h"
6 class Pager : public Tactor
7 {
8  public:
9  Pager();
12  Pager(string pagerID);
13  virtual ~Pager();
14  Pager(const Pager& other);
15  Pager& operator=(const Pager& other);
22  virtual bool command(string command, HardwareInterface * hardwareInterface);
25  void setPagerID(string pagerID);
26  protected:
27  private:
28  string pagerID;
29 };
30 
31 #endif // PAGER_H
An interface to a hardware device, such as a serial connection.
Definition: HardwareInterface.h:5
Definition: Pager.h:6
Definition: Tactor.h:6
virtual bool command(string command, HardwareInterface *hardwareInterface)
void setPagerID(string pagerID)