summaryrefslogtreecommitdiffstats
path: root/include/ingen/Properties.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-18 01:42:06 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 01:42:06 -0400
commitb42cb99941882ec96efc469a3f9212e3b1676f26 (patch)
tree0321e3578ffa29009b02c511e57d15ba85772f80 /include/ingen/Properties.hpp
parent56cfb8680a67c283175e7a06b437cf480f9f5c82 (diff)
downloadingen-b42cb99941882ec96efc469a3f9212e3b1676f26.tar.gz
ingen-b42cb99941882ec96efc469a3f9212e3b1676f26.tar.bz2
ingen-b42cb99941882ec96efc469a3f9212e3b1676f26.zip
Use consistent brace wrapping for class definitions
Diffstat (limited to 'include/ingen/Properties.hpp')
-rw-r--r--include/ingen/Properties.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ingen/Properties.hpp b/include/ingen/Properties.hpp
index 95b7eaf9..9151372b 100644
--- a/include/ingen/Properties.hpp
+++ b/include/ingen/Properties.hpp
@@ -28,7 +28,8 @@
namespace ingen {
/** A property value (an Atom with a context). */
-class Property : public Atom {
+class Property : public Atom
+{
public:
enum class Graph {
DEFAULT, ///< Default context for "universal" properties
@@ -53,7 +54,8 @@ private:
Graph _ctx;
};
-class Properties : public std::multimap<URI, Property> {
+class Properties : public std::multimap<URI, Property>
+{
public:
using Graph = Property::Graph;