Panda3D
vrpnAnalog.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file vrpnAnalog.I
10  * @author drose
11  * @date 2001-01-26
12  */
13 
14 /**
15  * Returns the name of the analog device that was used to create this
16  * VrpnAnalog.
17  */
18 INLINE const std::string &VrpnAnalog::
19 get_analog_name() const {
20  return _analog_name;
21 }
22 
23 /**
24  * Returns true if no VrpnAnalogDevices reference this VrpnAnalog, or false
25  * otherwise.
26  */
27 INLINE bool VrpnAnalog::
28 is_empty() const {
29  return _devices.empty();
30 }
31 
32 /**
33  * Polls the connected device. Normally you should not call this directly;
34  * this will be called by the VrpnClient.
35  */
36 INLINE void VrpnAnalog::
37 poll() {
38  _analog->mainloop();
39 }
void poll()
Polls the connected device.
Definition: vrpnAnalog.I:37
const std::string & get_analog_name() const
Returns the name of the analog device that was used to create this VrpnAnalog.
Definition: vrpnAnalog.I:19
bool is_empty() const
Returns true if no VrpnAnalogDevices reference this VrpnAnalog, or false otherwise.
Definition: vrpnAnalog.I:28