From 4e231572bd27bd4ffa1fd8d813ffe8faf984b111 Mon Sep 17 00:00:00 2001 From: glenux Date: Sun, 30 Oct 2005 23:01:32 +0000 Subject: [PATCH] --- src/tools/eydrle_main.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/tools/eydrle_main.cpp diff --git a/src/tools/eydrle_main.cpp b/src/tools/eydrle_main.cpp new file mode 100644 index 0000000..c91b7ef --- /dev/null +++ b/src/tools/eydrle_main.cpp @@ -0,0 +1,15 @@ +#include "eydrle.hh" + +using namespace std; +using namespace EydTools; + +int main(int argc, char **argv){ + bool ready; + EydRle eydrle; + ready = eydrle.init(argc, argv); + if (ready) { + eydrle.run(); + } + + return 0; +}