X-Git-Url: http://git.tdb.fi/?p=libs%2Fvr.git;a=blobdiff_plain;f=source%2Fsystem.cpp;h=500e672f3365518276c51145b5eb9150aa129143;hp=c8354561489ffba0bf1b1711c7ed38db97264eb8;hb=80785cc981166c5faacfcc41476b3d2ffdb65c4a;hpb=e21e0b80154afe4a62480efca61a07d4c2f2b0ef diff --git a/source/system.cpp b/source/system.cpp index c835456..500e672 100644 --- a/source/system.cpp +++ b/source/system.cpp @@ -51,5 +51,16 @@ System *System::create_autodetect() return 0; } +void System::set_absolute_tracking(bool a) +{ + if(a) + throw invalid_argument("absolute tracking not supported"); +} + +MotionController *System::create_controller() +{ + throw runtime_error("controller not supported"); +} + } // namespace VR } // namespace Msp