| 33 | #include <iostream> |
| 34 | |
| 35 | int main() { |
| 36 | osvr::clientkit::ClientContext context( |
| 37 | "com.osvr.exampleclients.DisplayParameter"); |
| 38 | |
| 39 | std::string displayDescription = context.getStringParameter("/display"); |
| 40 | |
| 41 | std::cout << "Got value of /display:\n" << displayDescription << std::endl; |
| 42 | |
| 43 | std::cout << "Library shut down, exiting." << std::endl; |
| 44 | return 0; |
| 45 | } |
nothing calls this directly
no test coverage detected