Orocos Real-Time Toolkit  2.9.0
Classes | Namespaces | Functions
SequenceTypeInfoBase.hpp File Reference
#include "SequenceConstructor.hpp"
#include "TemplateConstructor.hpp"
#include "PropertyComposition.hpp"
#include "VectorTemplateComposition.hpp"
#include "PropertyDecomposition.hpp"
#include "../internal/FusedFunctorDataSource.hpp"
#include "../internal/DataSourceGenerator.hpp"
#include <boost/lexical_cast.hpp>

Go to the source code of this file.

Classes

class  RTT::types::SequenceTypeInfoBase< T >
 Template for data types that are C++ STL Sequences with operator[], size() and capacity() methods. More...
 

Namespaces

 RTT
 Contains TaskContext, Activity, OperationCaller, Operation, Property, InputPort, OutputPort, Attribute.
 
 RTT::types
 Classes for typekits for describing and handling user data types.
 

Functions

template<class T >
int RTT::types::get_capacity (T const &cont)
 Returns the capacity of an STL container which has the capacity() member function. More...
 
template<class T >
int RTT::types::get_size (T const &cont)
 Returns the size of an STL container which has the size() member function. More...
 
template<class T >
T::reference RTT::types::get_container_item (T &cont, int index)
 Returns a reference to one item in an STL container. More...
 
template<class T >
T::value_type RTT::types::get_container_item_copy (const T &cont, int index)
 Returns a copy to one item in an STL container. More...
 
bool RTT::types::get_container_item (std::vector< bool > &cont, int index)
 Specialisation for vector<bool>, we don't return references to bits aka std::_Bit_reference. More...
 
bool RTT::types::get_container_item_copy (const std::vector< bool > &cont, int index)