fipa_acl  1.4
Classes | Public Types | Public Member Functions | List of all members
buildStringImpl Struct Reference

#include <grammar_common.h>

Classes

struct  result
 

Public Types

typedef std::string result_type
 

Public Member Functions

template<typename T , typename U , typename V >
result_type operator() (T arg0, U arg1, V arg2) const
 

Detailed Description

Concatenation of two string as 'lazy' implementation for boost spirit

Definition at line 154 of file grammar_common.h.

Member Typedef Documentation

typedef std::string buildStringImpl::result_type

Definition at line 156 of file grammar_common.h.

Member Function Documentation

template<typename T , typename U , typename V >
result_type buildStringImpl::operator() ( arg0,
arg1,
arg2 
) const
inline

Definition at line 165 of file grammar_common.h.

166  {
167  arg0 += arg1;
168  arg0 += arg2;
169  return arg0;
170  }

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