diff options
author | David Robillard <d@drobilla.net> | 2007-02-07 03:22:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-07 03:22:42 +0000 |
commit | 39d5400b39c8089287d5d294becae1268d232d31 (patch) | |
tree | 0cf73ef86233121bc7f0408ca536aad196d3166c /src/libs/client/NodeModel.h | |
parent | e135edf1e65ac978f86f4849bd3667299dd69c7e (diff) | |
download | ingen-39d5400b39c8089287d5d294becae1268d232d31.tar.gz ingen-39d5400b39c8089287d5d294becae1268d232d31.tar.bz2 ingen-39d5400b39c8089287d5d294becae1268d232d31.zip |
Mad sed-fu for consistent private member naming.
git-svn-id: http://svn.drobilla.net/lad/ingen@286 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/NodeModel.h')
-rw-r--r-- | src/libs/client/NodeModel.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/libs/client/NodeModel.h b/src/libs/client/NodeModel.h index a63932d9..77c9c985 100644 --- a/src/libs/client/NodeModel.h +++ b/src/libs/client/NodeModel.h @@ -49,12 +49,12 @@ public: SharedPtr<PortModel> get_port(const string& port_name) const; - const map<int, map<int, string> >& get_programs() const { return m_banks; } - const string& plugin_uri() const { return m_plugin_uri; } - SharedPtr<PluginModel> plugin() const { return m_plugin; } - int num_ports() const { return m_ports.size(); } - const PortModelList& ports() const { return m_ports; } - virtual bool polyphonic() const { return m_polyphonic; } + const map<int, map<int, string> >& get_programs() const { return _banks; } + const string& plugin_uri() const { return _plugin_uri; } + SharedPtr<PluginModel> plugin() const { return _plugin; } + int num_ports() const { return _ports.size(); } + const PortModelList& ports() const { return _ports; } + virtual bool polyphonic() const { return _polyphonic; } // Signals sigc::signal<void, SharedPtr<PortModel> > new_port_sig; @@ -80,11 +80,11 @@ protected: friend class PatchModel; void set_path(const Path& p); - bool m_polyphonic; - PortModelList m_ports; ///< List of ports (not a map to preserve order) - string m_plugin_uri; ///< Plugin URI (if PluginModel is unknown) - SharedPtr<PluginModel> m_plugin; ///< The plugin this node is an instance of - map<int, map<int, string> > m_banks; ///< DSSI banks + bool _polyphonic; + PortModelList _ports; ///< List of ports (not a map to preserve order) + string _plugin_uri; ///< Plugin URI (if PluginModel is unknown) + SharedPtr<PluginModel> _plugin; ///< The plugin this node is an instance of + map<int, map<int, string> > _banks; ///< DSSI banks }; |