#include <TestValue.h>
Public Methods | |
TestValue (int i, double v) | |
double | value () const |
bool | operator< (const TestValue &other) const |
Private Attributes | |
int | m_id |
double | m_value |
|
Definition at line 10 of file TestValue.h.
|
|
Definition at line 11 of file TestValue.h. References m_value.
00011 {return m_value;} |
|
Definition at line 12 of file TestValue.h. References m_id.
00012 { 00013 if (m_id < other.m_id) return true; 00014 return false; 00015 } |
|
Definition at line 17 of file TestValue.h. Referenced by operator<(), and TestValue(). |
|
Definition at line 18 of file TestValue.h. Referenced by TestValue(), and value(). |