summaryrefslogtreecommitdiffstats
path: root/include/ingen/LV2Features.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/LV2Features.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/LV2Features.hpp')
-rw-r--r--include/ingen/LV2Features.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/ingen/LV2Features.hpp b/include/ingen/LV2Features.hpp
index 61183932..5726feb9 100644
--- a/include/ingen/LV2Features.hpp
+++ b/include/ingen/LV2Features.hpp
@@ -33,11 +33,13 @@ class World;
/** Features for use by LV2 plugins.
* @ingroup IngenShared
*/
-class INGEN_API LV2Features {
+class INGEN_API LV2Features
+{
public:
LV2Features() = default;
- class Feature {
+ class Feature
+ {
public:
virtual ~Feature() = default;
@@ -50,7 +52,8 @@ public:
static void free_feature(LV2_Feature* feature);
};
- class EmptyFeature : public Feature {
+ class EmptyFeature : public Feature
+ {
public:
explicit EmptyFeature(const char* uri) noexcept : _uri(uri) {}
@@ -64,7 +67,8 @@ public:
const char* _uri;
};
- class FeatureArray : public raul::Noncopyable {
+ class FeatureArray : public raul::Noncopyable
+ {
public:
using FeatureVector = std::vector<std::shared_ptr<LV2_Feature>>;