Newer
Older
ubixos / src / lib / views / sunlight / vTitleTab.cpp
@reddawg reddawg on 15 Apr 2004 413 bytes UbixOS v1.0
#include <string>
#include <vContext.h>
#include <vTitleTab.h>

vTitleTab::vTitleTab(vContext * parent) : vContext(parent) {
  font = new ogBitFont();
  title = "";
  
  return;
} // vTitleTab::vTitleTab

void
vTitleTab::SetTitle(const std::string newTitle) {
  title = newTitle;
  return;
} // vTitleTab::SetTitle

vTitleTab::~vTitleTab(void) {
  delete font;
  font = NULL;
  return;
} // vTitleTab::~vTitleTab