diff options
Diffstat (limited to 'options/scoped.hpp')
-rw-r--r-- | options/scoped.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/options/scoped.hpp b/options/scoped.hpp new file mode 100644 index 00000000..52ae383d --- /dev/null +++ b/options/scoped.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "bundle.hpp" +#include <QString> + +#include "export.hpp" + +namespace options { + +struct OPENTRACK_OPTIONS_EXPORT opts +{ + bundle b; + opts(const QString& name); + opts& operator=(const opts&) = delete; + opts(const opts&) = delete; + ~opts(); +}; + +} |