|
quantities/Bandwidth.hGo to the documentation of this file.00001 //============================================================================ 00002 // Author : Alessandro Pinto <apinto@eecs.berkeley.edu> 00003 // University of California, Berkeley 00004 // 545 Cory Hall, Berkeley, CA 94720 00005 // Copyright : See COPYING file that comes with this distribution 00006 //============================================================================ 00007 00008 #ifndef BANDWIDTH_H_ 00009 #define BANDWIDTH_H_ 00010 00011 #include <string> 00012 #include "../core/Quantity.h" 00013 00014 namespace cosi { 00015 00016 class Bandwidth : public RealQuantity { 00017 00018 public: 00019 Bandwidth(); 00020 Bandwidth(double pValue); 00021 ~Bandwidth(); 00022 Bandwidth Get( ) ; 00023 bool operator <(Bandwidth pValue); 00024 bool operator >(Bandwidth pValue); 00025 bool operator ==(Bandwidth pValue) const; 00026 void operator << ( Bandwidth pValue ) ; 00027 Bandwidth operator+(Bandwidth pValue) ; 00028 static std::string sQuantityName; 00029 00030 }; 00031 00032 } 00033 00034 #endif /*BANDWIDTH_H_*/ Generated on Sun Sep 7 18:37:42 2008 for COSI by 1.5.4 |