egami
C++ Image Processing program
/homes/esi30/DCS339/coursework/src/egami.cpp
Go to the documentation of this file.
00001 #include <cstdlib>
00002 #include <ctime>
00003 
00004 #include <gtkmm/main.h>
00005 
00006 #include "main_window.hpp"
00007 #include "utils.hpp"
00008 
00009 int main(int argc, char **argv){
00010     std::srand(std::time(0));
00011     Gtk::Main kit(argc, argv);
00012     Main_window w;
00013     register_processings();
00014     Gtk::Main::run(w);
00015 }
00016 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends