forked from blue/squawk
16 lines
168 B
C
16 lines
168 B
C
|
#ifndef GLOBAL_H
|
||
|
#define GLOBAL_H
|
||
|
|
||
|
namespace Shared {
|
||
|
|
||
|
enum ConnectionState {
|
||
|
disconnected,
|
||
|
connecting,
|
||
|
connected,
|
||
|
error
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // GLOBAL_H
|