Newer
Older
ubixos / src / bin / launcher / launcher.cpp
@flameshadow flameshadow on 24 May 2004 245 bytes stop that
#include <vButton.h>
#include <ubixButton.h>
#include <ubixDesktop.h>
#include <stdlib.h>

int main(void) {
  ubixDesktop * desktop = new ubixDesktop(NULL);
  if (desktop!=NULL) cout << "Desktop created" << endl;
  delete desktop;
  return 0;
}