squawk/global.h

22 lines
451 B
C
Raw Normal View History

#ifndef GLOBAL_H
#define GLOBAL_H
2019-04-02 15:46:18 +00:00
#include <QString>
#include <deque>
namespace Shared {
enum ConnectionState {
disconnected,
connecting,
connected,
error
};
2019-04-02 15:46:18 +00:00
static const std::deque<QString> ConnectionStateNames = {"Disconnected", "Connecting", "Connected", "Error"};
static const std::deque<QString> ConnectionStateThemeIcons = {"network-disconnect", "view-refresh", "network-connect", "state-error"};
};
#endif // GLOBAL_H