vrpnButton.I 707 B

123456789101112131415161718192021222324252627282930
  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 vrpnButton.I
  10. * @author drose
  11. * @date 2001-01-26
  12. */
  13. /**
  14. * Returns the name of the button device that was used to create this
  15. * VrpnButton.
  16. */
  17. INLINE const std::string &VrpnButton::
  18. get_button_name() const {
  19. return _button_name;
  20. }
  21. /**
  22. * Returns true if no VrpnButtonDevices reference this VrpnButton, or false
  23. * otherwise.
  24. */
  25. INLINE bool VrpnButton::
  26. is_empty() const {
  27. return _devices.empty();
  28. }