Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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