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/ControlModel.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/ControlModel.h')
-rw-r--r-- | src/libs/client/ControlModel.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libs/client/ControlModel.h b/src/libs/client/ControlModel.h index 337acfc6..749436b5 100644 --- a/src/libs/client/ControlModel.h +++ b/src/libs/client/ControlModel.h @@ -32,20 +32,20 @@ class ControlModel { public: ControlModel(const Path& port_path, float value) - : m_port_path(port_path), - m_value(value) + : _port_path(port_path), + _value(value) { - assert(m_port_path.find("//") == string::npos); + assert(_port_path.find("//") == string::npos); } - const Path& port_path() const { return m_port_path; } - void port_path(const string& p) { m_port_path = p; } - float value() const { return m_value; } - void value(float v) { m_value = v; } + const Path& port_path() const { return _port_path; } + void port_path(const string& p) { _port_path = p; } + float value() const { return _value; } + void value(float v) { _value = v; } private: - Path m_port_path; - float m_value; + Path _port_path; + float _value; }; |