SeaBreeze
System.h
Go to the documentation of this file.
1 /***************************************************/
33 #ifndef SEABREEZE_SYSTEM_H
34 #define SEABREEZE_SYSTEM_H
35 
36 namespace seabreeze {
37 
38  class System {
39  public:
40  System();
41  virtual ~System();
42 
43  static void sleepMilliseconds(unsigned int millis);
44  static bool initialize();
45  static void shutdown();
46 
47  };
48 
49 }
50 
51 #endif
Definition: System.h:38
Encapsulates all SeaBreeze classes.
Definition: DeviceFactory.h:42