This commit is contained in:
glenux 2005-10-30 23:01:32 +00:00
parent c92bb5e352
commit 4e231572bd

15
src/tools/eydrle_main.cpp Normal file
View file

@ -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;
}