Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

TestValue.h

Go to the documentation of this file.
00001 #ifndef ATLFAST_BREMTESTVALUE_H
00002 #define ATLFAST_BREMTESTVALUE_H
00003 
00004 
00005 namespace Atlfast{
00006 
00007   class TestValue{
00008     
00009   public:
00010     TestValue(int i, double v):m_id(i), m_value(v) {}
00011     double  value() const {return m_value;}
00012     bool operator<(const TestValue& other) const{ 
00013       if (m_id < other.m_id) return true;
00014       return false;
00015     }
00016   private:
00017     int m_id;
00018     double m_value;
00019   };
00020 }//namepace
00021 #endif
00022   
00023 
00024 
00025 
00026 
00027 

Generated on Tue Mar 18 11:18:25 2003 for AtlfastAlgs by doxygen1.3-rc1