Panda3D
pgMouseWatcherParameter.I
1 // Filename: pgMouseWatcherParameter.I
2 // Created by: drose (05Jul01)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 
16 ////////////////////////////////////////////////////////////////////
17 // Function: PGMouseWatcherParameter::Constructor
18 // Access: Public
19 // Description:
20 ////////////////////////////////////////////////////////////////////
21 INLINE PGMouseWatcherParameter::
22 PGMouseWatcherParameter() {
23 }
24 
25 ////////////////////////////////////////////////////////////////////
26 // Function: PGMouseWatcherParameter::Copy Constructor
27 // Access: Public
28 // Description:
29 ////////////////////////////////////////////////////////////////////
30 INLINE PGMouseWatcherParameter::
31 PGMouseWatcherParameter(const MouseWatcherParameter &copy) :
33 {
34 }
35 
36 ////////////////////////////////////////////////////////////////////
37 // Function: PGMouseWatcherParameter::Copy Assignment Operator
38 // Access: Public
39 // Description:
40 ////////////////////////////////////////////////////////////////////
41 INLINE void PGMouseWatcherParameter::
42 operator = (const MouseWatcherParameter &copy) {
43  MouseWatcherParameter::operator = (copy);
44 }
This is sent along as a parameter to most events generated for a region to indicate the mouse and but...