From: David ‘Bombe’ Roden Date: Fri, 4 Jul 2008 19:30:43 +0000 (+0200) Subject: add main file X-Git-Tag: 0.1~67 X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=commitdiff_plain;h=5e0a94e6216815749aebab3950abcb7522e314d5 add main file --- diff --git a/Main.cpp b/Main.cpp new file mode 100644 index 0000000..aa44bdc --- /dev/null +++ b/Main.cpp @@ -0,0 +1,13 @@ +/** + * © 2008 by David Roden + */ + +#include "Main.h" + +int main(int argc, char** argv) { + FileReaderInput* fileReaderInput; + CollectionReader* collectionReader; + + return 0; +} + diff --git a/Main.h b/Main.h new file mode 100644 index 0000000..8c2937d --- /dev/null +++ b/Main.h @@ -0,0 +1,11 @@ +/** + * © 2008 by David Roden + */ + +#ifndef __ECPARSE_MAIN_H__ +#define __ECPARSE_MAIN_H__ + +#include "FileReaderInput.h" +#include "CollectionReader.h" + +#endif