Skip to content
Snippets Groups Projects
Commit dbc544ad authored by Jan Trávníček's avatar Jan Trávníček
Browse files

tiny additions to the visitor use documentation

parent 426dea10
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -64,7 +64,7 @@ template < class SymbolType > ...@@ -64,7 +64,7 @@ template < class SymbolType >
class FormalRegExpElement : public base::CommonBaseMiddle < FormalRegExpElement < SymbolType > >, public ext::BaseNode < FormalRegExpElement < SymbolType > > { class FormalRegExpElement : public base::CommonBaseMiddle < FormalRegExpElement < SymbolType > >, public ext::BaseNode < FormalRegExpElement < SymbolType > > {
protected: protected:
/** /**
* Visitor interface of the element * Visitor interface of the element.
*/ */
class Visitor { class Visitor {
public: public:
...@@ -135,7 +135,7 @@ protected: ...@@ -135,7 +135,7 @@ protected:
}; };
   
/** /**
* \brief Accept method of the visitor pattern * \brief Accept method of the visitor pattern. This is where the actual type of this object is evaluated.
* *
* \param visitor the accepted visitor. * \param visitor the accepted visitor.
*/ */
......
...@@ -64,7 +64,7 @@ template < class SymbolType > ...@@ -64,7 +64,7 @@ template < class SymbolType >
class UnboundedRegExpElement : public base::CommonBaseMiddle < UnboundedRegExpElement < SymbolType > >, public ext::BaseNode < UnboundedRegExpElement < SymbolType > > { class UnboundedRegExpElement : public base::CommonBaseMiddle < UnboundedRegExpElement < SymbolType > >, public ext::BaseNode < UnboundedRegExpElement < SymbolType > > {
protected: protected:
/** /**
* Visitor interface of the element * Visitor interface of the element.
*/ */
class Visitor { class Visitor {
public: public:
...@@ -135,7 +135,7 @@ protected: ...@@ -135,7 +135,7 @@ protected:
}; };
   
/** /**
* \brief Accept method of the visitor pattern * \brief Accept method of the visitor pattern. This is where the actual type of this object is evaluated.
* *
* \param visitor the accepted visitor. * \param visitor the accepted visitor.
*/ */
......
...@@ -57,7 +57,7 @@ template < class SymbolType, class RankType > ...@@ -57,7 +57,7 @@ template < class SymbolType, class RankType >
class FormalRTEElement : public base::CommonBase < FormalRTEElement < SymbolType, RankType > >, public ext::BaseNode < FormalRTEElement < SymbolType, RankType > > { class FormalRTEElement : public base::CommonBase < FormalRTEElement < SymbolType, RankType > >, public ext::BaseNode < FormalRTEElement < SymbolType, RankType > > {
protected: protected:
/** /**
* Visitor interface of the element * Visitor interface of the element.
*/ */
class Visitor { class Visitor {
public: public:
...@@ -128,7 +128,7 @@ protected: ...@@ -128,7 +128,7 @@ protected:
}; };
   
/** /**
* \brief Accept method of the visitor pattern * \brief Accept method of the visitor pattern. This is where the actual type of this object is evaluated.
* *
* \param visitor the accepted visitor. * \param visitor the accepted visitor.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment