casa
$Rev:20696$
|
The AngularRate class implements a quantity of AngularRate in radians per second. More...
#include <AngularRate.h>
Public Member Functions | |
AngularRate () | |
The nullary constructor (default). | |
AngularRate (const AngularRate &) | |
The copy constructor. | |
AngularRate (const string &s) | |
A constructor from a string representation. | |
AngularRate (const IDLAngularRate &idlAngularRate) | |
A constructor from a CORBA/IDL representation. | |
AngularRate (double value) | |
A constructor from a value in double precision. | |
virtual | ~AngularRate () |
The destructor. | |
void | toBin (EndianOSStream &eoss) |
Write the binary representation of this to an EndianOSStream . | |
AngularRate & | operator= (const AngularRate &x) |
An assignment operator AngularRate = AngularRate. | |
AngularRate & | operator= (const double d) |
An assignment operator AngularRate = double. | |
AngularRate & | operator+= (const AngularRate &x) |
Operator increment and assign. | |
AngularRate & | operator-= (const AngularRate &x) |
Operator decrement and assign. | |
AngularRate & | operator*= (const double x) |
Operator multiply and assign. | |
AngularRate & | operator/= (const double x) |
Operator divide and assign. | |
AngularRate | operator+ (const AngularRate &x) const |
Addition operator. | |
AngularRate | operator- (const AngularRate &x) const |
Substraction operator. | |
AngularRate | operator* (const double x) const |
Multiplication operator. | |
AngularRate | operator/ (const double x) const |
Division operator. | |
bool | operator< (const AngularRate &x) const |
Comparison operator. | |
bool | operator> (const AngularRate &x) const |
Comparison operator. | |
bool | operator<= (const AngularRate &x) const |
Comparison operator. | |
bool | operator>= (const AngularRate &x) const |
Comparison operator. | |
bool | operator== (const AngularRate &x) const |
Comparision operator. | |
bool | equals (const AngularRate &x) const |
Comparison method. | |
bool | operator!= (const AngularRate &x) const |
Comparison operator. | |
bool | isZero () const |
Comparison method. | |
AngularRate | operator- () const |
Unary operator. | |
AngularRate | operator+ () const |
Unary operator. | |
string | toString () const |
Converts into a string. | |
string | toStringI () const |
Idem toString. | |
operator string () const | |
Conversion operator. | |
double | get () const |
Return the double precision value of the AngularRate. | |
IDLAngularRate | toIDLAngularRate () const |
Return the IDLAngularRate representation of the AngularRate. | |
AngularRate () | |
The nullary constructor (default). | |
AngularRate (const AngularRate &) | |
The copy constructor. | |
AngularRate (const string &s) | |
A constructor from a string representation. | |
AngularRate (const IDLAngularRate &idlAngularRate) | |
A constructor from a CORBA/IDL representation. | |
AngularRate (double value) | |
A constructor from a value in double precision. | |
virtual | ~AngularRate () |
The destructor. | |
void | toBin (EndianOSStream &eoss) |
Write the binary representation of this to an EndianOSStream . | |
AngularRate & | operator= (const AngularRate &x) |
An assignment operator AngularRate = AngularRate. | |
AngularRate & | operator= (const double d) |
An assignment operator AngularRate = double. | |
AngularRate & | operator+= (const AngularRate &x) |
Operator increment and assign. | |
AngularRate & | operator-= (const AngularRate &x) |
Operator decrement and assign. | |
AngularRate & | operator*= (const double x) |
Operator multiply and assign. | |
AngularRate & | operator/= (const double x) |
Operator divide and assign. | |
AngularRate | operator+ (const AngularRate &x) const |
Addition operator. | |
AngularRate | operator- (const AngularRate &x) const |
Substraction operator. | |
AngularRate | operator* (const double x) const |
Multiplication operator. | |
AngularRate | operator/ (const double x) const |
Division operator. | |
bool | operator< (const AngularRate &x) const |
Comparison operator. | |
bool | operator> (const AngularRate &x) const |
Comparison operator. | |
bool | operator<= (const AngularRate &x) const |
Comparison operator. | |
bool | operator>= (const AngularRate &x) const |
Comparison operator. | |
bool | operator== (const AngularRate &x) const |
Comparision operator. | |
bool | equals (const AngularRate &x) const |
Comparison method. | |
bool | operator!= (const AngularRate &x) const |
Comparison operator. | |
bool | isZero () const |
Comparison method. | |
AngularRate | operator- () const |
Unary operator. | |
AngularRate | operator+ () const |
Unary operator. | |
string | toString () const |
Converts into a string. | |
string | toStringI () const |
Idem toString. | |
operator string () const | |
Conversion operator. | |
double | get () const |
Return the double precision value of the AngularRate. | |
IDLAngularRate | toIDLAngularRate () const |
Return the IDLAngularRate representation of the AngularRate. | |
Static Public Member Functions | |
static double | fromString (const string &s) |
A static method equivalent to the constructor from a string. | |
static string | toString (double) |
Conversion into string. | |
static AngularRate | getAngularRate (StringTokenizer &st) throw (NumberFormatException) |
Parse the next (string) token of a StringTokenizer into an angle. | |
static void | toBin (const vector< AngularRate > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of AngularRate to a EndianOSStream. | |
static void | toBin (const vector< vector< AngularRate > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream. | |
static void | toBin (const vector< vector< vector< AngularRate > > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream. | |
static AngularRate | fromBin (EndianIStream &eis) |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate. | |
static vector< AngularRate > | from1DBin (EndianIStream &eis) |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate. | |
static vector< vector < AngularRate > > | from2DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate. | |
static vector< vector< vector < AngularRate > > > | from3DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate. | |
static string | unit () |
Returns the abbreviated name of the unit implicitely associated to any AngularRate. | |
static double | fromString (const string &s) |
A static method equivalent to the constructor from a string. | |
static string | toString (double) |
Conversion into string. | |
static AngularRate | getAngularRate (StringTokenizer &st) throw (NumberFormatException) |
Parse the next (string) token of a StringTokenizer into an angle. | |
static void | toBin (const vector< AngularRate > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of AngularRate to a EndianOSStream. | |
static void | toBin (const vector< vector< AngularRate > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream. | |
static void | toBin (const vector< vector< vector< AngularRate > > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream. | |
static AngularRate | fromBin (EndianIStream &eis) |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate. | |
static vector< AngularRate > | from1DBin (EndianIStream &eis) |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate. | |
static vector< vector < AngularRate > > | from2DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate. | |
static vector< vector< vector < AngularRate > > > | from3DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate. | |
static string | unit () |
Returns the abbreviated name of the unit implicitely associated to any AngularRate. | |
Private Attributes | |
double | value |
Friends | |
AngularRate | operator* (double d, const AngularRate &x) |
Overloading of multiplication operator. | |
ostream & | operator<< (ostream &os, const AngularRate &x) |
Overloading of << to output the value an AngularRate on an ostream. | |
istream & | operator>> (istream &is, AngularRate &x) |
Overloading of >> to read an AngularRate from an istream. | |
AngularRate | operator* (double d, const AngularRate &x) |
Overloading of multiplication operator. | |
ostream & | operator<< (ostream &os, const AngularRate &x) |
Overloading of << to output the value an AngularRate on an ostream. | |
istream & | operator>> (istream &is, AngularRate &x) |
Overloading of >> to read an AngularRate from an istream. |
The AngularRate class implements a quantity of AngularRate in radians per second.
Definition at line 59 of file AngularRate.h.
asdm::AngularRate::AngularRate | ( | ) | [inline] |
The nullary constructor (default).
AngularRate constructors.
Definition at line 322 of file AngularRate.h.
asdm::AngularRate::AngularRate | ( | const AngularRate & | t | ) | [inline] |
The copy constructor.
Definition at line 324 of file AngularRate.h.
asdm::AngularRate::AngularRate | ( | const string & | s | ) | [inline] |
A constructor from a string representation.
The string passed in argument must be parsable into a double precision number to express the value in radian of the angle.
s | a string. |
Definition at line 330 of file AngularRate.h.
asdm::AngularRate::AngularRate | ( | const IDLAngularRate & | idlAngularRate | ) | [inline] |
A constructor from a CORBA/IDL representation.
idlAngularRate | a cons ref to an IDLAngularRate. |
Definition at line 327 of file AngularRate.h.
asdm::AngularRate::AngularRate | ( | double | value | ) | [inline] |
A constructor from a value in double precision.
The value passed in argument defines the value of the AngularRate in radian.
Definition at line 332 of file AngularRate.h.
asdm::AngularRate::~AngularRate | ( | ) | [inline, virtual] |
The nullary constructor (default).
asdm::AngularRate::AngularRate | ( | const AngularRate & | ) |
The copy constructor.
asdm::AngularRate::AngularRate | ( | const string & | s | ) |
A constructor from a string representation.
The string passed in argument must be parsable into a double precision number to express the value in radian of the angle.
s | a string. |
asdm::AngularRate::AngularRate | ( | const IDLAngularRate & | idlAngularRate | ) |
A constructor from a CORBA/IDL representation.
idlAngularRate | a cons ref to an IDLAngularRate. |
asdm::AngularRate::AngularRate | ( | double | value | ) |
A constructor from a value in double precision.
The value passed in argument defines the value of the AngularRate in radian.
virtual asdm::AngularRate::~AngularRate | ( | ) | [virtual] |
The destructor.
bool asdm::AngularRate::equals | ( | const AngularRate & | x | ) | const [inline] |
Comparison method.
Equality.
x | a const reference to a AngularRate. |
Definition at line 397 of file AngularRate.h.
References value.
bool asdm::AngularRate::equals | ( | const AngularRate & | x | ) | const |
static vector<AngularRate> asdm::AngularRate::from1DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate.
eis | a reference to the EndianIStream to be read |
static vector<AngularRate> asdm::AngularRate::from1DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate.
eis | a reference to the EndianIStream to be read |
static vector<vector<AngularRate> > asdm::AngularRate::from2DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate.
eis | the EndianIStream to be read |
static vector<vector<AngularRate> > asdm::AngularRate::from2DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate.
eis | the EndianIStream to be read |
static vector<vector<vector<AngularRate> > > asdm::AngularRate::from3DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate.
eis | the EndianIStream to be read |
static vector<vector<vector<AngularRate> > > asdm::AngularRate::from3DBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate.
eis | the EndianIStream to be read |
static AngularRate asdm::AngularRate::fromBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate.
eis | the EndianStream to be read |
static AngularRate asdm::AngularRate::fromBin | ( | EndianIStream & | eis | ) | [static] |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate.
eis | the EndianStream to be read |
static double asdm::AngularRate::fromString | ( | const string & | s | ) | [static] |
A static method equivalent to the constructor from a string.
s | a string?. |
static double asdm::AngularRate::fromString | ( | const string & | s | ) | [static] |
A static method equivalent to the constructor from a string.
s | a string?. |
double asdm::AngularRate::get | ( | ) | const [inline] |
Return the double precision value of the AngularRate.
Definition at line 427 of file AngularRate.h.
References value.
double asdm::AngularRate::get | ( | ) | const |
Return the double precision value of the AngularRate.
static AngularRate asdm::AngularRate::getAngularRate | ( | StringTokenizer & | st | ) | throw (NumberFormatException) [static] |
Parse the next (string) token of a StringTokenizer into an angle.
st | a reference to a StringTokenizer. |
static AngularRate asdm::AngularRate::getAngularRate | ( | StringTokenizer & | st | ) | throw (NumberFormatException) [static] |
Parse the next (string) token of a StringTokenizer into an angle.
st | a reference to a StringTokenizer. |
bool asdm::AngularRate::isZero | ( | ) | const |
Comparison method.
Test nullity.
bool asdm::AngularRate::isZero | ( | ) | const |
Comparison method.
Test nullity.
asdm::AngularRate::operator string | ( | ) | const [inline] |
Conversion operator.
Conversion functions.
Converts into a string.
Definition at line 418 of file AngularRate.h.
References toString().
asdm::AngularRate::operator string | ( | ) | const |
Conversion operator.
Converts into a string.
bool asdm::AngularRate::operator!= | ( | const AngularRate & | x | ) | const |
bool asdm::AngularRate::operator!= | ( | const AngularRate & | x | ) | const [inline] |
Comparison operator.
Not-equal.
x | a const reference to a AngularRate. |
Definition at line 403 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator* | ( | const double | x | ) | const [inline] |
Multiplication operator.
x | a value in double precision. |
Definition at line 374 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator* | ( | const double | x | ) | const |
Multiplication operator.
x | a value in double precision. |
AngularRate & asdm::AngularRate::operator*= | ( | const double | x | ) | [inline] |
Operator multiply and assign.
x | a value in double precision. |
Definition at line 355 of file AngularRate.h.
References value.
AngularRate& asdm::AngularRate::operator*= | ( | const double | x | ) |
Operator multiply and assign.
x | a value in double precision. |
AngularRate asdm::AngularRate::operator+ | ( | const AngularRate & | x | ) | const [inline] |
Addition operator.
arithmetic functions
x | a const reference to a AngularRate. |
Definition at line 364 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator+ | ( | const AngularRate & | x | ) | const |
Addition operator.
x | a const reference to a AngularRate. |
AngularRate asdm::AngularRate::operator+ | ( | ) | const |
Unary operator.
Unary plus.
AngularRate asdm::AngularRate::operator+ | ( | ) | const [inline] |
AngularRate& asdm::AngularRate::operator+= | ( | const AngularRate & | x | ) |
Operator increment and assign.
x | a const reference to an AngularRate. |
AngularRate & asdm::AngularRate::operator+= | ( | const AngularRate & | x | ) | [inline] |
Operator increment and assign.
assignment with arithmetic operators
x | a const reference to an AngularRate. |
Definition at line 347 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator- | ( | const AngularRate & | x | ) | const [inline] |
Substraction operator.
x | a const reference to a AngularRate. |
Definition at line 369 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator- | ( | const AngularRate & | x | ) | const |
Substraction operator.
x | a const reference to a AngularRate. |
AngularRate asdm::AngularRate::operator- | ( | ) | const |
Unary operator.
Opposite.
AngularRate asdm::AngularRate::operator- | ( | ) | const [inline] |
Unary operator.
unary - and + operators
Opposite.
Definition at line 407 of file AngularRate.h.
References value.
AngularRate& asdm::AngularRate::operator-= | ( | const AngularRate & | x | ) |
Operator decrement and assign.
x | a const reference to an AngularRate. |
AngularRate & asdm::AngularRate::operator-= | ( | const AngularRate & | x | ) | [inline] |
Operator decrement and assign.
x | a const reference to an AngularRate. |
Definition at line 351 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator/ | ( | const double | x | ) | const [inline] |
Division operator.
d | a value in double precision. |
Definition at line 379 of file AngularRate.h.
References value.
AngularRate asdm::AngularRate::operator/ | ( | const double | x | ) | const |
Division operator.
d | a value in double precision. |
AngularRate& asdm::AngularRate::operator/= | ( | const double | x | ) |
Operator divide and assign.
x | a valye in double precision. |
AngularRate & asdm::AngularRate::operator/= | ( | const double | x | ) | [inline] |
Operator divide and assign.
x | a valye in double precision. |
Definition at line 359 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator< | ( | const AngularRate & | x | ) | const |
bool asdm::AngularRate::operator< | ( | const AngularRate & | x | ) | const [inline] |
Comparison operator.
comparison operators
Less-than.
x | a const reference to a AngularRate. |
Definition at line 385 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator<= | ( | const AngularRate & | x | ) | const |
bool asdm::AngularRate::operator<= | ( | const AngularRate & | x | ) | const [inline] |
Comparison operator.
Less-than or equal.
x | a const reference to a AngularRate. |
Definition at line 391 of file AngularRate.h.
References value.
AngularRate & asdm::AngularRate::operator= | ( | const AngularRate & | x | ) | [inline] |
An assignment operator AngularRate = AngularRate.
assignment operator
x | a const reference to an AngularRate. |
Definition at line 337 of file AngularRate.h.
References value.
AngularRate& asdm::AngularRate::operator= | ( | const AngularRate & | x | ) |
An assignment operator AngularRate = AngularRate.
x | a const reference to an AngularRate. |
AngularRate& asdm::AngularRate::operator= | ( | const double | d | ) |
An assignment operator AngularRate = double.
d | a value in double precision. |
AngularRate & asdm::AngularRate::operator= | ( | const double | d | ) | [inline] |
An assignment operator AngularRate = double.
assignment operator
d | a value in double precision. |
Definition at line 342 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator== | ( | const AngularRate & | x | ) | const |
bool asdm::AngularRate::operator== | ( | const AngularRate & | x | ) | const [inline] |
Comparision operator.
Equal-to.
x | a const reference to a AngularRate. |
Definition at line 400 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator> | ( | const AngularRate & | x | ) | const |
bool asdm::AngularRate::operator> | ( | const AngularRate & | x | ) | const [inline] |
Comparison operator.
Greater-than.
x | a const reference to a AngularRate. |
Definition at line 388 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator>= | ( | const AngularRate & | x | ) | const [inline] |
Comparison operator.
Greater-than or equal.
x | a const reference to a AngularRate. |
Definition at line 394 of file AngularRate.h.
References value.
bool asdm::AngularRate::operator>= | ( | const AngularRate & | x | ) | const |
void asdm::AngularRate::toBin | ( | EndianOSStream & | eoss | ) |
Write the binary representation of this to an EndianOSStream .
eoss | a reference to an EndianOSStream . |
void asdm::AngularRate::toBin | ( | EndianOSStream & | eoss | ) |
Write the binary representation of this to an EndianOSStream .
eoss | a reference to an EndianOSStream . |
static void asdm::AngularRate::toBin | ( | const vector< AngularRate > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of AngularRate to a EndianOSStream.
angle | the vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
static void asdm::AngularRate::toBin | ( | const vector< AngularRate > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of AngularRate to a EndianOSStream.
angle | the vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
static void asdm::AngularRate::toBin | ( | const vector< vector< AngularRate > > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
static void asdm::AngularRate::toBin | ( | const vector< vector< AngularRate > > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
static void asdm::AngularRate::toBin | ( | const vector< vector< vector< AngularRate > > > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
static void asdm::AngularRate::toBin | ( | const vector< vector< vector< AngularRate > > > & | angle, |
EndianOSStream & | eoss | ||
) | [static] |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
IDLAngularRate asdm::AngularRate::toIDLAngularRate | ( | ) | const |
Return the IDLAngularRate representation of the AngularRate.
IDLAngularRate asdm::AngularRate::toIDLAngularRate | ( | ) | const [inline] |
Return the IDLAngularRate representation of the AngularRate.
Definition at line 431 of file AngularRate.h.
References value.
static string asdm::AngularRate::toString | ( | double | ) | [static] |
Conversion into string.
The resulting string contains the representation of the value of this AngularRate.
static string asdm::AngularRate::toString | ( | double | ) | [static] |
Conversion into string.
The resulting string contains the representation of the value of this AngularRate.
string asdm::AngularRate::toString | ( | ) | const |
Converts into a string.
string asdm::AngularRate::toString | ( | ) | const [inline] |
Converts into a string.
Definition at line 421 of file AngularRate.h.
References value.
Referenced by operator string(), and toStringI().
string asdm::AngularRate::toStringI | ( | ) | const [inline] |
string asdm::AngularRate::toStringI | ( | ) | const |
Idem toString.
string asdm::AngularRate::unit | ( | ) | [inline, static] |
Returns the abbreviated name of the unit implicitely associated to any AngularRate.
Definition at line 451 of file AngularRate.h.
Referenced by casa::MS2ASDM::unitASDMAngularRate().
static string asdm::AngularRate::unit | ( | ) | [static] |
Returns the abbreviated name of the unit implicitely associated to any AngularRate.
AngularRate operator* | ( | double | d, |
const AngularRate & | x | ||
) | [friend] |
Overloading of multiplication operator.
d | a value in double precision . |
x | a const reference to a AngularRate . |
AngularRate operator* | ( | double | d, |
const AngularRate & | x | ||
) | [friend] |
Overloading of multiplication operator.
d | a value in double precision . |
x | a const reference to a AngularRate . |
Overloading of multiplication operator.
d | a value in double precision . |
x | a const reference to a AngularRate . |
ostream& operator<< | ( | ostream & | os, |
const AngularRate & | x | ||
) | [friend] |
Overloading of << to output the value an AngularRate on an ostream.
os | a reference to the ostream to be written on. |
x | a const reference to a AngularRate. |
ostream& operator<< | ( | ostream & | os, |
const AngularRate & | x | ||
) | [friend] |
Overloading of << to output the value an AngularRate on an ostream.
os | a reference to the ostream to be written on. |
x | a const reference to a AngularRate. |
istream& operator>> | ( | istream & | is, |
AngularRate & | x | ||
) | [friend] |
Overloading of >> to read an AngularRate from an istream.
istream& operator>> | ( | istream & | is, |
AngularRate & | x | ||
) | [friend] |
Overloading of >> to read an AngularRate from an istream.
double asdm::AngularRate::value [private] |
Definition at line 319 of file AngularRate.h.
Referenced by equals(), get(), operator!=(), asdm::operator*(), operator*(), operator*=(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator/=(), operator<(), asdm::operator<<(), operator<=(), operator=(), operator==(), operator>(), operator>=(), asdm::operator>>(), toIDLAngularRate(), toString(), and toStringI().