summaryrefslogtreecommitdiff
path: root/foo.cpp
blob: 4c53772d1238ad203d86dd6d548b6a46178f35cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdexcept>
#include <iostream>

#include "texturepng.h"

#include "pattern.h"
#include "application.h"

int main(int argc, char **argv) {
	try {
		Application* app = new Application();
		app->patt = new KakePattern();
		app->run();
	} catch(std::runtime_error e) {
		std::cerr << "Exception caught: " << e.what() << std::endl;
	}
	return 0;
}