summaryrefslogtreecommitdiffhomepage
path: root/spline
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2018-01-16 01:31:38 +0100
committerStanislaw Halik <sthalik@misaki.pl>2018-01-16 06:45:46 +0100
commitbd65c7d6350f295c0b5f91bb9a7c66b8abcd0078 (patch)
tree5a17bc03d79d3641ce9203e8e9884e60b7acaa07 /spline
parentb381a0831fda0055ac1e972c26c7ee62639e224c (diff)
logic, spline: get rid of using namespace in header
Diffstat (limited to 'spline')
-rw-r--r--spline/axis-opts.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/spline/axis-opts.hpp b/spline/axis-opts.hpp
index 5581f569..2f0d8432 100644
--- a/spline/axis-opts.hpp
+++ b/spline/axis-opts.hpp
@@ -1,11 +1,14 @@
#pragma once
#include "options/options.hpp"
-using namespace options;
#include "api/plugin-api.hpp"
#include "export.hpp"
+namespace axis_opts_impl {
+
+using namespace options;
+
struct OTR_SPLINE_EXPORT axis_opts final
{
enum max_clamp
@@ -52,3 +55,7 @@ private:
QString prefix_;
Axis axis_;
};
+
+} // ns axis_opts_impl
+
+using axis_opts_impl::axis_opts;