ui: added color_scheme_test command displaying all graph node types and states

implementations for other views comming.
This commit is contained in:
Eberhard Graether
2016-06-22 16:14:06 +02:00
parent 36c504d8a0
commit 7f867bf889
17 changed files with 457 additions and 50 deletions
@@ -0,0 +1,20 @@
#ifndef MESSAGE_COLOR_SCHEME_TEST_H
#define MESSAGE_COLOR_SCHEME_TEST_H
#include "utility/messaging/Message.h"
class MessageColorSchemeTest
: public Message<MessageColorSchemeTest>
{
public:
MessageColorSchemeTest()
{
}
static const std::string getStaticType()
{
return "MessageColorSchemeTest";
}
};
#endif // MESSAGE_COLOR_SCHEME_TEST_H