Newer
Older
ubix2 / src / lib / views / sunlight / include / vTitleTab.h
@reddawg reddawg on 1 Jun 2006 369 bytes ubix2
#ifndef VTITLETAB_H
#define VTITLETAB_H

#include <string>
#include <vContext.h>
#include <ogFont.h>

class vTitleTab : public vContext {
 protected:
   ogBitFont * font;
   std::string title;
 public:
               vTitleTab(vContext *);
  virtual void vDraw(void);
  void         vSetTitle(const std::string);
  virtual     ~vTitleTab(void);
}; // vTitleTab

#endif