Some minor styling updates
This commit is contained in:
parent
814c4a7c59
commit
a746fc77fa
@ -35,9 +35,19 @@
|
||||
#include "TypeContainer.h"
|
||||
|
||||
template<class VISITOR, class CONTAINER>
|
||||
/**
|
||||
* @brief
|
||||
*
|
||||
*/
|
||||
class TypeContainerVisitor
|
||||
{
|
||||
public:
|
||||
|
||||
/**
|
||||
* @brief
|
||||
*
|
||||
* @param v
|
||||
*/
|
||||
TypeContainerVisitor(VISITOR& v) : i_visitor(v){}
|
||||
void Visit(CONTAINER& c)
|
||||
{
|
||||
@ -47,8 +57,10 @@ class TypeContainerVisitor
|
||||
{
|
||||
c.template accept<VISITOR>(std::forward<VISITOR>(i_visitor));
|
||||
}
|
||||
|
||||
private:
|
||||
VISITOR& i_visitor;
|
||||
|
||||
VISITOR& i_visitor; /**< TODO */
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user