#ifndef SIMTEMPLATEDVIRTUALFUNC_H
#define SIMTEMPLATEDVIRTUALFUNC_H

/*!
\brief Simulated templated virtual functions.
*/
class simtemplatedvirtualfunc
{
public:

  /** Brief description of each test. */
  static string doc[];
  
  /** Demo with visitorPrint function with many types.*/
  static void test01();

  /** Demo of two templated virtual functions on the same data structures. */
  static void test02();

};


#endif


