16 #ifndef Q_MOC_RUN // MT : very important to avoid the error : ' Parse error at
39 this->myPluginName = _pluginName;
40 this->myPlugin = _plugin;
41 this->myStringValue = _value;
45 this->myPluginName = _pluginName;
46 this->myPlugin = _plugin;
47 this->myIntValue = _value;
51 this->myPluginName = _pluginName;
52 this->myPlugin = _plugin;
53 this->myDoubleValue = _value;
57 this->myPluginName = _pluginName;
58 this->myPlugin = _plugin;
59 this->myFloatValue = _value;
88 setText(QString::fromUtf8((*myStringValue).c_str()));
94 setText(QString::fromUtf8(std::to_string(*myIntValue).c_str()));
100 setText(QString::fromUtf8(std::to_string(*myDoubleValue).c_str()));
106 setText(QString::fromUtf8(std::to_string(*myFloatValue).c_str()));