summaryrefslogtreecommitdiffstats
path: root/src/libs/client/Store.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-07-19 08:59:30 +0000
committerDavid Robillard <d@drobilla.net>2006-07-19 08:59:30 +0000
commit466f306c1154b7aeccff301b8597872b82e3c806 (patch)
tree1b8d9d6c4a778f0f5cf36522295a66d3493e1adc /src/libs/client/Store.h
parent2dbd0cd81dff72aea42344188d20f7d7f6d20e1a (diff)
downloadingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.gz
ingen-466f306c1154b7aeccff301b8597872b82e3c806.tar.bz2
ingen-466f306c1154b7aeccff301b8597872b82e3c806.zip
Changed namespace names, removed almost all references to "Om"
git-svn-id: http://svn.drobilla.net/lad/ingen@97 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/Store.h')
-rw-r--r--src/libs/client/Store.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/libs/client/Store.h b/src/libs/client/Store.h
index 4016e325..ff3eea62 100644
--- a/src/libs/client/Store.h
+++ b/src/libs/client/Store.h
@@ -24,9 +24,9 @@
#include <sigc++/sigc++.h>
#include "util/Path.h"
using std::string; using std::map;
-using Om::Path;
-namespace LibOmClient {
+namespace Ingen {
+namespace Client {
class SigClientInterface;
class ObjectModel;
@@ -35,9 +35,9 @@ class PatchModel;
class NodeModel;
class PortModel;
-/** Singeton which holds all "Om Objects" for easy/fast lookup
+/** Singeton which holds all "Ingen Objects" for easy/fast lookup
*
- * \ingroup OmGtk
+ * \ingroup IngenClient
*/
class Store : public sigc::trackable { // FIXME: is trackable necessary?
public:
@@ -79,11 +79,12 @@ private:
void connection_event(const Path& src_port_path, const Path& dst_port_path);
void disconnection_event(const Path& src_port_path, const Path& dst_port_path);
- map<string, CountedPtr<ObjectModel> > m_objects; ///< Keyed by Om path
+ map<string, CountedPtr<ObjectModel> > m_objects; ///< Keyed by Ingen path
map<string, CountedPtr<PluginModel> > m_plugins; ///< Keyed by URI
};
-} // namespace LibOmClient
+} // namespace Client
+} // namespace Ingen
#endif // STORE_H