#include #include #include namespace junk{ //OLD QT COMMANDS TO JOG MEMORY //QLabel *label= new QLabel("Ni Hao!!"); // label->show(); //QPushButton *b1 = new QPushButton("One"); //QPushButton *b2 = new QPushButton("two"); //QPushButton *b3 = new QPushButton("Three"); //QHBoxLayout *h= new QHBoxLayout; //QVBoxLayout *v= new QVBoxLayout; //v->addWidget(b1); //v->addWidget(b2); //v->addWidget(b3); //wind->setLayout(v); //wind->setWindowTitle("Andrew\'s Application"); //wind->show(); } int main(int argc, char *argv[]){ QApplication app(argc,argv); QWidget *w =new QWidget; //w->show(); return app.exec(); }