#include <Mapping.h>
Public Member Functions | |
Mapping () | |
~Mapping () | |
Mapping (int id, float weight) | |
Mapping (const Mapping &other) | |
Mapping & | operator= (const Mapping &other) |
bool | operator== (const Mapping &other) const |
bool | operator!= (const Mapping &other) const |
Private Attributes | |
int | m_iId |
float | m_fWeight |
|
Write brief comment for Mapping here.
Definition at line 34 of file Mapping.h. 00034 {};
|
|
Write brief comment for ~Mapping here.
Definition at line 50 of file Mapping.h. 00050 {};
|
|
Definition at line 5 of file Mapping.cpp. References m_fWeight, and m_iId.
|
|
Write brief comment for Mapping here.
Definition at line 27 of file Mapping.cpp. 00027 { 00028 00029 }
|
|
Write brief comment for operator != here.
Definition at line 113 of file Mapping.cpp. 00114 { 00115 if( true ) { 00116 return false; 00117 } 00118 return true; 00119 }
|
|
Write brief comment for operator = here.
Definition at line 52 of file Mapping.cpp. 00053 { 00054 // if same object 00055 if ( this == &other ) 00056 return *this; 00057 00058 00059 return *this; 00060 }
|
|
Write brief comment for operator == here.
Definition at line 83 of file Mapping.cpp. 00084 { 00085 00086 if( true ) { 00087 return true; 00088 } 00089 return false; 00090 }
|
|
Definition at line 16 of file Mapping.h. Referenced by Mapping(). |
|
Definition at line 15 of file Mapping.h. Referenced by Mapping(). |