#ifndef REGIOND2LINKEDTEST_H
#define REGIOND2LINKEDTEST_H

#include <gobj.h>

class regionD2linkedtest
{
  /** Global graphics stream. */
  gobjContainer xGraphics;
public:

  /** 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();

  /** Print a house. */
  static void test01();
  /** Display a house. */
  void test02(int argc, char** argv);
  /** Display the letter H. */
  void test03(int argc, char** argv);
};



#endif



