mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
global/static QString
This commit is contained in:
parent
9868ddd602
commit
9b4a8427e6
2 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue