<HTML>
<HEAD>
<TITLE>Includes</TITLE></HEAD><BODY><H6><A href=main.html>Contents page</A></H6><P>
<H6><A href=Main.html>Index</A></H6><P>
<H1>Includes</H1>
<HR>
  //////////////////////////////////////////////////////////////////////////////<PRE>
  // 3dstatus.h
  //
  // Jeffry A Worth
  // November 10, 1995
  //////////////////////////////////////////////////////////////////////////////<P>

  #ifndef __3DSTATUS_HPP__
  #define __3DSTATUS_HPP__<P>

  //////////////////////////////////////////////////////////////////////////////
  // INCLUDES
  #include &lt;string.h&gt;
  #include &quot;aframe:include/status.hpp&quot;
  #include &quot;aframe:include/panel.hpp&quot;<P>

  //////////////////////////////////////////////////////////////////////////////
  // 3D Status Bar<P>

  class AF3DStatus : public AFStatus
  {
  public:
    ~AF3DStatus();<P>

    virtual char *ObjectType() { return &quot;3DStatus&quot;; };
    virtual void Create(AFWindow* pwindow, AFRect *rect, ULONG id,
                      UBYTE penDone, UBYTE penToGo);
    AFPanel m_panel;
  };<P>

  //////////////////////////////////////////////////////////////////////////////
  #endif // __3DSTATUS_HPP__
<HR>
