Guest User

Untitled

a guest
May 20th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. #include "PossumManager.hpp"
  4.  
  5. int main()
  6. {
  7.  
  8.     xuint32 handle = scos::PossumManager::getInstance()->getHandle("Pose__11");
  9.  
  10.     struct CarStates p;
  11.  
  12.     int result = scos::PossumManager::getInstance()->getRecords(handle, (void*)p, 32);
  13.  
  14.     std::cout << handle << std::endl;
  15.  
  16.     int wait;
  17.     std::cin >> wait;
  18.  
  19.     return 0;
  20. }
Add Comment
Please, Sign In to add comment