示例#1
0
int main()
{
	try{
		{
			Tester t;
			t.test1();
			t.test2();
			t.test3();
		}
		cout << "tests passed\n";
	}catch(std::exception& e){
		cerr << "caught exception\n";
		cerr << e.what() << "\n";
		return 1;
	}
	catch(...){
		cerr << "caught strange exception\n";
		return 1;
	}
    return 0;
}/**/
示例#2
0
文件: main.cpp 项目: andidh/OOP
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Tester t;
    t.test1();
    Repository* repo = new Repository("/Users/AndiD/Documents/C++/exam/prog.txt");
    Controller* ctr = new Controller(repo);
    vector<GUI*> widgets;

    for ( auto it : repo->getProgs()){
        GUI* window = new GUI(ctr, it);
        window->show();
        repo->attachObserver((Observer*) window);
        widgets.push_back(window);
    }

    int rez = a.exec();
    for( auto it : widgets ){
        delete it;
    }
    delete repo;
    delete ctr;
    return rez;
}