global/static QString

This commit is contained in:
Seth Alves 2016-11-13 11:09:27 -08:00
parent 9868ddd602
commit 9b4a8427e6
2 changed files with 5 additions and 5 deletions

View file

@ -27,8 +27,8 @@ Q_LOGGING_CATEGORY(inputplugins, "hifi.inputplugins")
#include <NeuronDataReader.h>
const QString NeuronPlugin::NAME = "Neuron";
const QString NeuronPlugin::NEURON_ID_STRING = "Perception Neuron";
const char* NeuronPlugin::NAME = "Neuron";
const char* NeuronPlugin::NEURON_ID_STRING = "Perception Neuron";
// indices of joints of the Neuron standard skeleton.
// This is 'almost' the same as the High Fidelity standard skeleton.

View file

@ -29,7 +29,7 @@ public:
// Plugin functions
virtual bool isSupported() const override;
virtual const QString& getName() const override { return NAME; }
virtual const char* getName() const override { return NAME; }
const QString& getID() const override { return NEURON_ID_STRING; }
virtual bool activate() override;
@ -65,8 +65,8 @@ protected:
std::shared_ptr<InputDevice> _inputDevice { std::make_shared<InputDevice>() };
static const QString NAME;
static const QString NEURON_ID_STRING;
static const char* NAME;
static const char* NEURON_ID_STRING;
std::string _serverAddress;
int _serverPort;