#ifndef GOBJTEST_H
#define GOBJTEST_H

#include <gobj.h>

class gobjtest
{
  /** Global graphics container.*/
  gobjContainer xGraphics;
public:

  /** Brief description of each test. */
  static string doc[];

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


  /** Display a circle rotated about an axis. */
  void test001(int argc, char** argv);
  void test002(int argc, char** argv);

  /** Serialize inverse code to opengl example. */
  void test003(int argc, char** argv);

  /** Redraw the scene. */
  static void display01();
  /** ESC key to quit application. */
  static void keyboard01(unsigned char key, int x, int y);
};


#endif



