Skip to content

Commit

Permalink
remove duplicate method, use updated path for include
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgiy Frolov committed Mar 10, 2016
1 parent 0d41b05 commit 78de904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions src/osvr/Client/PureClientContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,9 @@ namespace client {
common::Transform const &
PureClientContext::m_getRoomToWorldTransform() const {
return m_roomToWorld;

common::SystemComponent *PureClientContext::m_getSystemComponent() {
return m_systemComponent;
}

shared_ptr<common::SystemComponent> PureClientContext::m_getSystemComponent() {
common::SystemComponent *PureClientContext::m_getSystemComponent() {
return m_systemComponent;
}

Expand Down
4 changes: 2 additions & 2 deletions src/osvr/Client/PureClientContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <osvr/Client/RemoteHandlerFactory.h>
#include <osvr/Client/ClientInterfaceObjectManager.h>
#include <osvr/Common/PathTreeOwner.h>
#include "RemoteHandlerFactory.h"
#include <osvr/Client/RemoteHandlerFactory.h>

// Library/third-party includes
#include <vrpn_ConnectionPtr.h>
Expand Down Expand Up @@ -75,7 +75,7 @@ namespace client {

common::PathTree const &m_getPathTree() const override;

virtual common::SystemComponent *m_getSystemComponent();
common::SystemComponent *m_getSystemComponent() override;

common::Transform const &m_getRoomToWorldTransform() const override;

Expand Down

0 comments on commit 78de904

Please sign in to comment.