Changeset 26:77a23a961301 in xplra for test
- Timestamp:
- 02/07/13 18:58:46 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/multigettest.cc
r22 r26 63 63 printf("Connected to X-Plane.\n\n"); 64 64 65 MultiGetter getter(xplane);65 MultiGetter& getter = xplane.createMultiGetter(); 66 66 67 67 const size_t tailnumID = getter.addByteArray("sim/aircraft/view/acf_tailnum", 40); … … 182 182 } 183 183 184 //xplane.destroyMultiBuffer(getter); 185 184 186 return 0; 185 187 } catch(Exception& exception) { -
test/multisettest.cc
r21 r26 63 63 printf("Connected to X-Plane.\n\n"); 64 64 65 MultiSetter setter(xplane);65 MultiSetter& setter = xplane.createMultiSetter(); 66 66 67 67 try { … … 98 98 printf("Done.\n"); 99 99 100 //xplane.destroyMultiBuffer(setter); 101 100 102 return 0; 101 103 } catch(Exception& exception) {
Note:
See TracChangeset
for help on using the changeset viewer.