ESA JPIP server  0.1
base Struct Reference

Contains a set of useful static methods used by the application. More...

#include <base.h>

Collaboration diagram for base:

Static Public Member Functions

template<typename TYPE >
static std::string to_string (TYPE val)
 Converts a value to a string. More...
 
template<typename T >
static void copy (std::vector< T > &dest, const std::vector< T > &src)
 Copies a vector. More...
 
template<typename T >
static void copy (std::vector< std::vector< T > > &dest, const std::vector< std::vector< T > > &src)
 Copies a vector of vectors. More...
 
template<typename T1 , typename T2 >
static void copy (std::multimap< T1, T2 > &dest, const std::multimap< T1, T2 > &src)
 Copies a multimap. More...
 

Detailed Description

Contains a set of useful static methods used by the application.

Member Function Documentation

template<typename T >
static void base::copy ( std::vector< T > &  dest,
const std::vector< T > &  src 
)
inlinestatic

Copies a vector.

Here is the caller graph for this function:

template<typename T >
static void base::copy ( std::vector< std::vector< T > > &  dest,
const std::vector< std::vector< T > > &  src 
)
inlinestatic

Copies a vector of vectors.

Here is the call graph for this function:

template<typename T1 , typename T2 >
static void base::copy ( std::multimap< T1, T2 > &  dest,
const std::multimap< T1, T2 > &  src 
)
inlinestatic

Copies a multimap.

template<typename TYPE >
static std::string base::to_string ( TYPE  val)
inlinestatic

Converts a value to a string.

Parameters
valValue to convert.

Here is the caller graph for this function:


The documentation for this struct was generated from the following file: