Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some misc fixes #13

Open
wants to merge 13 commits into
base: AprilTagTrackers
Choose a base branch
from
8 changes: 0 additions & 8 deletions driver_files/src/Driver/IVRDevice.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ namespace ExampleDriver {
return out_pose;
}

// Inherited via ITrackedDeviceServerDriver
virtual vr::EVRInitError Activate(uint32_t unObjectId) = 0;
virtual void Deactivate() = 0;
virtual void EnterStandby() = 0;
virtual void* GetComponent(const char* pchComponentNameAndVersion) = 0;
virtual void DebugRequest(const char* pchRequest, char* pchResponseBuffer, uint32_t unResponseBufferSize) = 0;
virtual vr::DriverPose_t GetPose() = 0;

~IVRDevice() = default;
};
};
2 changes: 1 addition & 1 deletion driver_files/src/Driver/IVRDriver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace ExampleDriver {

typedef std::variant<std::monostate, std::string, int, float, bool> SettingsValue;

class IVRDriver : protected vr::IServerTrackedDeviceProvider {
class IVRDriver : public vr::IServerTrackedDeviceProvider {
public:

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion driver_files/src/Driver/Key.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ namespace Key {
}
#else
(void)key;
return false;
#endif
return false;
}

}; // namespace Key
Loading