#include <argos3/core/utility/configuration/argos_exception.h>
#include <cxxabi.h>
#include <typeinfo>
#include <algorithm>
Go to the source code of this file.
|
| argos |
| The namespace containing all the ARGoS related code.
|
|
|
template<typename T > |
T * | argos::any_cast (CAny *pc_any) |
| Performs a cast on the any type to the desired type, when the any type is passed by non-const pointer. More...
|
|
template<typename T > |
const T * | argos::any_cast (const CAny *pc_any) |
| Performs a cast on the any type to the desired type, when the any type is passed by const pointer. More...
|
|
template<typename T > |
const T & | argos::any_cast (const CAny &c_any) |
| Performs a cast on the any type to the desired type, when the any type is passed by const reference. More...
|
|
template<typename T > |
T & | argos::any_cast (CAny &c_any) |
| Performs a cast on the any type to the desired type, when the any type is passed by non-const reference. More...
|
|