Newer
Older
ubixos / src / lib / views / sunlight / include / vTitleTab.h
@reddawg reddawg on 15 Apr 2004 323 bytes UbixOS v1.0
#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 *);
  void SetTitle(const std::string);
  virtual ~vTitleTab(void);
}; // vTitleTab

#endif