#include <stdexcept>
#include <libport/cassert>
#include <urbi/uvar.hh>
Go to the source code of this file.
Namespaces |
| namespace | urbi |
| | Global definition of the starterlist.
|
Defines |
| #define | SET(Type) |
| #define | GET(Type) |
Detailed Description
Definition in file uvar.hxx.
Define Documentation
Value:inline UVar::operator Type() const \
{ \
check(); \
return impl_->get(); \
}
Definition at line 125 of file uvar.hxx.
Value:inline UVar& UVar::operator=(Type tv) \
{ \
\
check(); \
UValue v(tv, false); \
impl_->set(v); \
return *this; \
}
Definition at line 96 of file uvar.hxx.