#include <TestValue.h>
Public Member Functions | |
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 7 of file TestValue.h.
Atlfast::TestValue::TestValue | ( | int | i, | |
double | v | |||
) | [inline] |
double Atlfast::TestValue::value | ( | ) | const [inline] |
bool Atlfast::TestValue::operator< | ( | const TestValue & | other | ) | const [inline] |
Definition at line 12 of file TestValue.h.
00012 { 00013 if (m_id < other.m_id) return true; 00014 return false; 00015 }
int Atlfast::TestValue::m_id [private] |
Definition at line 17 of file TestValue.h.
double Atlfast::TestValue::m_value [private] |
Definition at line 18 of file TestValue.h.