blob: c392a0176eb96695df3e721a2a89e6c1c102c849 [file] [log] [blame]
Shad Ansari7193ae22018-08-08 22:23:18 +00001#ifndef OPENOLT_STATE_H_
2#define OPENOLT_STATE_H_
3
4namespace state {
5 bool is_activated();
6 bool is_connected();
7 void connect();
8 void disconnect();
9 void activate();
10 void deactivate();
11}
12
13#endif