Moved Store into LibOmClient namespace

git-svn-id: http://svn.drobilla.net/lad@27 a436a847-0d15-0410-975c-d299462d15a1
This commit is contained in:
dave 2006-06-11 23:52:59 +00:00
parent 452e7bf23f
commit 3f4a4ec4b1
3 changed files with 9 additions and 16 deletions

View File

@ -21,8 +21,6 @@ om_gtk_SOURCES = \
ConnectWindow.cpp \
App.h \
App.cpp \
Store.h \
Store.cpp \
Configuration.h \
Configuration.cpp \
GladeFactory.h \

View File

@ -23,7 +23,7 @@
#include "PatchModel.h"
#include "SigClientInterface.h"
namespace OmGtk {
namespace LibOmClient {
Store::Store(SigClientInterface& emitter)
{
@ -259,5 +259,5 @@ Store::new_port_event(const string& path, const string& type, bool is_output)
}
} // namespace OmGtk
} // namespace LibOmClient

View File

@ -27,18 +27,13 @@
using std::string; using std::map;
namespace LibOmClient {
class SigClientInterface;
class ObjectModel;
class PluginModel;
class PatchModel;
class NodeModel;
class PortModel;
}
using namespace LibOmClient;
namespace OmGtk {
class SigClientInterface;
class ObjectModel;
class PluginModel;
class PatchModel;
class NodeModel;
class PortModel;
/** Singeton which holds all "Om Objects" for easy/fast lookup
*
@ -84,6 +79,6 @@ private:
};
} // namespace OmGtk
} // namespace LibOmClient
#endif // STORE_H