#ifndef CONTROLLER_STRING_H #define CONTROLLER_STRING_H #include "controller.h" #include #include #include #include namespace C { class String : public C::Controller { Q_OBJECT public: String(const W::Address p_address, QObject* parent = 0); ~String(); signals: void change(const QString& str); protected: W::String data; handler(get) private: static uint64_t counter; }; } #endif // CONTROLLER_STRING_H