Panda3D
vrpnDialDevice.h
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 vrpnDialDevice.h
10  * @author drose
11  * @date 2001-01-26
12  */
13 
14 #ifndef VRPNDIALDEVICE_H
15 #define VRPNDIALDEVICE_H
16 
17 #include "pandabase.h"
18 
19 #include "clientDialDevice.h"
20 
21 class VrpnClient;
22 class VrpnDial;
23 
24 /**
25  * The Panda interface to a VRPN dial device. This object will be returned by
26  * VrpnClient::make_device(), for attaching to a DialNode.
27  *
28  * This class does not need to be exported from the DLL.
29  */
31 public:
32  VrpnDialDevice(VrpnClient *client, const std::string &device_name,
33  VrpnDial *vrpn_dial);
34  virtual ~VrpnDialDevice();
35 
36  INLINE VrpnDial *get_vrpn_dial() const;
37 
38 private:
39  VrpnDial *_vrpn_dial;
40 
41 public:
42  static TypeHandle get_class_type() {
43  return _type_handle;
44  }
45  static void init_type() {
46  ClientDialDevice::init_type();
47  register_type(_type_handle, "VrpnDialDevice",
48  ClientDialDevice::get_class_type());
49  }
50  virtual TypeHandle get_type() const {
51  return get_class_type();
52  }
53  virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
54 
55 private:
56  static TypeHandle _type_handle;
57 
58  friend class VrpnDial;
59 };
60 
61 #include "vrpnDialDevice.I"
62 
63 #endif
VrpnDial * get_vrpn_dial() const
Returns a pointer to the particular VrpnDial this device gets its data from.
A specific ClientBase that connects to a VRPN server and records information on the connected VRPN de...
Definition: vrpnClient.h:35
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...
Definition: register_type.I:22
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
The Panda interface to a VRPN dial device.
A device, attached to the ClientBase by a DialNode, that records the data from a single named dial de...
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is the actual interface to a particular VRPN dial device, and all of its numbered dials.
Definition: vrpnDial.h:37
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.