28 lines
956 B
Plaintext
28 lines
956 B
Plaintext
// Filename: inputDeviceManager.I
|
|
// Created by: rdb (09Dec15)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: InputDeviceManager::get_global_ptr
|
|
// Access: Published, Static
|
|
// Description: Returns the singleton instance.
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE InputDeviceManager *InputDeviceManager::
|
|
get_global_ptr() {
|
|
if (_global_ptr == (InputDeviceManager *)NULL) {
|
|
_global_ptr = new InputDeviceManager;
|
|
}
|
|
return _global_ptr;
|
|
}
|