-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConfigure.cpp
20 lines (15 loc) · 943 Bytes
/
Configure.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "Configure.h"
using namespace OSVRVirtualMotion;
using namespace ConfigureKey;
////////////////////////////////////////////////////////////////////////////////////////////////////////
/*----------------------------------------------------------------------------------------------------*/
Configure::Configure(const osvr::pluginkit::DeviceToken& pDeviceToken,
OSVR_DeviceInitOptions pOptions, const VirtualMotionData& pVirtualMotionData) :
mDeviceToken(pDeviceToken), mVirtualMotionData(pVirtualMotionData)/*,mConfigInterface(NULL)*/ {
//osvrDeviceConfigConfig(pOptions, &mConfigInterface);
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
/*----------------------------------------------------------------------------------------------------*/
inline bool isMatch(const std::string& pKeyA, const std::string& pKeyB) {
return (pKeyA.compare(pKeyB) == 0);
}