#ifndef GRAPHMISCTEST_H
#define GRAPHMISCTEST_H

/*!
\brief Test graphmisc. 
*/
class graphmisctest
{
  /** Global graphics stream. */
  gobjContainer xGraphics;
  /** Default keyboard handler - ESC to quit. */
  static void keyboard01(unsigned char key, int x, int y);
  /** Displays the gobj::global with double buffering. */
  static void display01();
public:

  /** Constructor. */
  graphmisctest()
    : xGraphics(true) {}

  /** Display a grid. */
  void test002(int argc, char** argv);

  static void test001();

};


#endif


