From 99c87ee39e32117ce5a9652ef5b50a1d5760bdf7 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 17 Mar 2009 19:36:35 -0400 Subject: Move the map for the values into its own thread-safe class --- sigscript/ValueMap.h | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 sigscript/ValueMap.h (limited to 'sigscript/ValueMap.h') diff --git a/sigscript/ValueMap.h b/sigscript/ValueMap.h new file mode 100644 index 00000000..9f05ca33 --- /dev/null +++ b/sigscript/ValueMap.h @@ -0,0 +1,56 @@ +/* + * Copyright 2008-2009 Ben Boeckel + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + */ + +#ifndef SIGSCRIPT_ACTIONMAP +#define SIGSCRIPT_ACTIONMAP + +// Sigscript includes +#include "ConfigOptions.h" +#include "Global.h" + +// Qt includes +#include +#include +#include +#include +#include +#include + +namespace Sigscript +{ +class SIGSCRIPT_NO_EXPORT ValueMap +{ + public: + bool contains(const QString& name) const; + + QStringList keys() const; + + QVariant value(const QString& name) const; + void setValue(const QString& name, const QVariant& value); + void unsetValue(const QString& name); + + ConfigOptions options(const QString& name) const; + void setOptions(const QString& name, const ConfigOptions options); + void unsetOptions(const QString& name, const ConfigOptions options); + private: + typedef QPair Value; + QMap m_map; + mutable QReadWriteLock m_mutex; +}; +} + +#endif -- cgit