#ifndef PRINTTEST_H
#define PRINTTEST_H

/*!
\brief Test print.h .
*/
class printtest
{
public:

  /** Test print by printing arrays, vectors and lists. */
  static void test01();
  /** Printing STL set. */
  static void test02();

};

#endif



