Blame c++/contourgl/contourgl.cpp

f2b8c4
/*
f2b8c4
    ......... 2015 Ivan Mahonin
f2b8c4
f2b8c4
    This program is free software: you can redistribute it and/or modify
f2b8c4
    it under the terms of the GNU General Public License as published by
f2b8c4
    the Free Software Foundation, either version 3 of the License, or
f2b8c4
    (at your option) any later version.
f2b8c4
f2b8c4
    This program is distributed in the hope that it will be useful,
f2b8c4
    but WITHOUT ANY WARRANTY; without even the implied warranty of
f2b8c4
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
f2b8c4
    GNU General Public License for more details.
f2b8c4
f2b8c4
    You should have received a copy of the GNU General Public License
f2b8c4
    along with this program.  If not, see <http: licenses="" www.gnu.org="">.</http:>
f2b8c4
*/
f2b8c4
f2b8c4
#include <iostream></iostream>
f2b8c4
93cbac
#include "test.h"
f2b8c4
f2b8c4
f2b8c4
using namespace std;
f2b8c4
f2b8c4
f2b8c4
int main() {
49e693
	Environment e;
49e693
	Test test(e);
7704aa
a04770
	//e.cl.hello();
5890eb
	//test.test2();
5890eb
	//test.test3();
49e693
	test.test4();
f2b8c4
f2b8c4
	cout << "done" << endl;
f2b8c4
	return 0;
f2b8c4
}