ui: removed auto refresh

This commit is contained in:
Eberhard Graether
2016-08-24 13:28:28 +02:00
parent 994a749b80
commit 01f740276b
10 changed files with 4 additions and 98 deletions
@@ -1,34 +0,0 @@
#ifndef MESSAGE_AUTO_REFRESH_CHANGED_H
#define MESSAGE_AUTO_REFRESH_CHANGED_H
#include "utility/messaging/Message.h"
class MessageAutoRefreshChanged: public Message<MessageAutoRefreshChanged>
{
public:
MessageAutoRefreshChanged(bool enabled)
: enabled(enabled)
{
}
static const std::string getStaticType()
{
return "MessageAutoRefreshChanged";
}
virtual void print(std::ostream& os) const
{
if (enabled)
{
os << "enabled";
}
else
{
os << "disabled";
}
}
bool enabled;
};
#endif // MESSAGE_AUTO_REFRESH_CHANGED_H