Newer
Older
ubixos / src / bin / launcher / launcher.cpp
@reddawg reddawg on 28 May 2004 301 bytes Getting Closer
#include <vButton.h>
#include <ubixButton.h>
#include <ubixDesktop.h>
#include <stdlib.h>
#include <iostream>
#include <libcpp.h>

int 
main(void) {
  ubixDesktop * desktop = new ubixDesktop(NULL);
  ubixButton * daButton = new ubixButton(desktop);
  delete daButton;
  delete desktop;

  return 0;
}