Static Public Member Functions | List of all members
FilterPrepend Class Reference

The implementation of the "prepend" filter. More...

Static Public Member Functions

static TemplateVariant apply (const TemplateVariant &v, const TemplateVariant &arg)
 

Detailed Description

The implementation of the "prepend" filter.

Definition at line 745 of file template.cpp.

Member Function Documentation

static TemplateVariant FilterPrepend::apply ( const TemplateVariant v,
const TemplateVariant arg 
)
inlinestatic

Definition at line 748 of file template.cpp.

749  {
752  {
753  return TemplateVariant(arg.toString() + v.toString());
754  }
755  else
756  {
757  return v;
758  }
759  }
QCString toString() const
Definition: template.h:232
Variant type which can hold one value of a fixed set of types.
Definition: template.h:90
Type type() const
Definition: template.h:142

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