diff --git a/examples/Main.cpp b/examples/Main.cpp
deleted file mode 100644
index 30dae485..00000000
--- a/examples/Main.cpp
+++ /dev/null
@@ -1,218 +0,0 @@
-/*
- *
- * Tiny Multimedia Framework
- * Copyright (C) 2014 Arash Shafiei
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- *
- */
-
-#include "tmf.h"
-
-#define APP6
-
-int main(int argc, char** argv) {
-
- TMF tmf;
-
- #ifdef APP1
-
- Pipeline* pipe = tmf.createPipeline("Test App");
-
- Filter* numberGeneratorFilter = tmf.createFilter(NUMBERGENERATOR_FILTER,
- "numberGeneratorFilter");
- Filter* add2Filter = tmf.createFilter(ADD2_FILTER, "add2Filter");
- Filter* multiply2Filter = tmf.createFilter(MULTIPLY2_FILTER,
- "multiply2Filter");
- Filter* duplicateFilter = tmf.createFilter(DUPLICATE_FILTER,
- "duplicateFilter");
- Filter* additionFilter = tmf.createFilter(ADDITION_FILTER,
- "additionFilter");
-
- pipe->connectFilters(numberGeneratorFilter, multiply2Filter);
- pipe->connectFilters(numberGeneratorFilter, add2Filter);
- pipe->connectFilters(numberGeneratorFilter, duplicateFilter);
- pipe->connectFilters(multiply2Filter, additionFilter);
- pipe->connectFilters(add2Filter, additionFilter);
-
- #endif
-
- #ifdef APP2
-
- if (argc < 3) {
- cerr << "Usage: " << argv[0] << "