summaryrefslogtreecommitdiffstats
path: root/src/progs/ingenuity/singletons.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-07-12 01:01:15 +0000
committerDavid Robillard <d@drobilla.net>2006-07-12 01:01:15 +0000
commit120757b8cb154266aae21472a49f0c00309a7dde (patch)
tree977e35d6222c1d9f5239c8de685fc0525c0c3a7d /src/progs/ingenuity/singletons.cpp
parent94ac1eb5bd854244e9d90dc636a33d9cc5b82b01 (diff)
downloadingen-120757b8cb154266aae21472a49f0c00309a7dde.tar.gz
ingen-120757b8cb154266aae21472a49f0c00309a7dde.tar.bz2
ingen-120757b8cb154266aae21472a49f0c00309a7dde.zip
Minor cleanups, removed braindead centralized singleton instance file
git-svn-id: http://svn.drobilla.net/lad/ingen@86 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/singletons.cpp')
-rw-r--r--src/progs/ingenuity/singletons.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/progs/ingenuity/singletons.cpp b/src/progs/ingenuity/singletons.cpp
deleted file mode 100644
index e3d113dc..00000000
--- a/src/progs/ingenuity/singletons.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/* This file is part of Om. Copyright (C) 2006 Dave Robillard.
- *
- * Om 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 2 of the License, or (at your option) any later
- * version.
- *
- * Om 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 details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "App.h"
-#include "Store.h"
-#include "Controller.h"
-
-namespace OmGtk
-{
- App* App::_instance = 0;
- Store* Store::_instance = 0;
- Controller* Controller::_instance = 0;
-}
-