XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xtd::parse::rule< _DeclT, _ImplT > Class Template Reference

Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern. More...

+ Inheritance diagram for xtd::parse::rule< _DeclT, _ImplT >:
+ Collaboration diagram for xtd::parse::rule< _DeclT, _ImplT >:

Public Types

using decl_type = _DeclT
 
using impl_type = _ImplT
 
using rule_type = rule< _DeclT, _ImplT >
 
- Public Types inherited from xtd::parse::rule_base
using pointer_type = std::shared_ptr< rule_base >
 
using vector_type = std::vector< pointer_type >
 

Public Member Functions

template<typename... _ChildRuleTs>
 rule (_ChildRuleTs &&...oChildRules)
 
virtual bool isa (const std::type_info &oType) const override
 Determines if the interface is implemented by a concrete type. More...
 
virtual const std::type_info & type () const override
 Gets the type info of the concrete implementation.
 
- Public Member Functions inherited from xtd::parse::rule_base
template<typename... _ChildRuleTs>
 rule_base (_ChildRuleTs &&...oChildRules)
 Constructor. More...
 
const vector_type & items () const
 Accessor for child parse elements. More...
 

Additional Inherited Members

- Protected Attributes inherited from xtd::parse::rule_base
vector_type _Items
 

Detailed Description

template<typename _DeclT, typename _ImplT = _DeclT>
class xtd::parse::rule< _DeclT, _ImplT >

Curiously recurring template pattern to simplify creation of rule_base implementations Rules and terminals implement the rule_base interface through this pattern.

It provides boiler plate pointer_type, isa() and type() members.

Template Parameters
_DeclTThe type declaration. Permits access to the implementation from the rule class template. Declaration pass their name in the form of: class SomeRule : rule<SomeRule>
_ImplTThe declaration used by the parsing algorithms. The library instantiates type of _DeclT when _ImplT successfully parses.

Definition at line 105 of file parse.hpp.

Member Function Documentation

template<typename _DeclT, typename _ImplT = _DeclT>
virtual bool xtd::parse::rule< _DeclT, _ImplT >::isa ( const std::type_info &  oType) const
inlineoverridevirtual

Determines if the interface is implemented by a concrete type.

Parameters
[in]oTypetype to test
Returns
true if the implementation's is the specified type

Implements xtd::parse::rule_base.

Definition at line 116 of file parse.hpp.


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