diff options
author | David Robillard <d@drobilla.net> | 2017-03-19 13:26:38 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-03-20 02:58:56 +0100 |
commit | f1c793f7e2148b10610a09a459d9e89b39d2d87b (patch) | |
tree | b898407dce08af0f2f978d59a85d4887d8555b54 /ingen/Properties.hpp | |
parent | efc0fe0a973db706d9409b345ad6fae585f4388c (diff) | |
download | ingen-f1c793f7e2148b10610a09a459d9e89b39d2d87b.tar.gz ingen-f1c793f7e2148b10610a09a459d9e89b39d2d87b.tar.bz2 ingen-f1c793f7e2148b10610a09a459d9e89b39d2d87b.zip |
Fix round-trip preservation of property contexts
Diffstat (limited to 'ingen/Properties.hpp')
-rw-r--r-- | ingen/Properties.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/Properties.hpp b/ingen/Properties.hpp index ef608574..437db874 100644 --- a/ingen/Properties.hpp +++ b/ingen/Properties.hpp @@ -29,9 +29,9 @@ namespace Ingen { class Property : public Atom { public: enum class Graph { - DEFAULT, - EXTERNAL, - INTERNAL + DEFAULT, ///< Default context for "universal" properties + EXTERNAL, ///< Externally visible graph properties + INTERNAL ///< Internally visible graph properties }; Property(const Atom& atom, Graph ctx=Graph::DEFAULT) |