/* Copyright (C) 2013 Liru Færs * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA */ #ifndef LFSIMFEATUREHANDLER_H #define LFSIMFEATUREHANDLER_H #include "llsingleton.h" #include "llpermissions.h" // ExportPolicy template > class SignaledType { public: SignaledType() : mValue() {} SignaledType(Type b) : mValue(b) {} boost::signals2::connection connect(const typename Signal::slot_type& slot) { return mSignal.connect(slot); } SignaledType& operator =(Type val) { if (val != mValue) { mValue = val; mSignal(); } return *this; } operator Type() const { return mValue; } private: Signal mSignal; Type mValue; }; class LFSimFeatureHandler : public LLSingleton { protected: friend class LLSingleton; LFSimFeatureHandler(); public: void handleRegionChange(); void setSupportedFeatures(); // Connection setters boost::signals2::connection setSupportsExportCallback(const boost::signals2::signal::slot_type& slot); boost::signals2::connection setSearchURLCallback(const boost::signals2::signal::slot_type& slot); // Accessors bool simSupportsExport() const { return mSupportsExport; } std::string mapServerURL() const { return mMapServerURL; } std::string searchURL() const { return mSearchURL; } ExportPolicy exportPolicy() const; private: // SignaledTypes SignaledType mSupportsExport; std::string mMapServerURL; SignaledType mSearchURL; }; #endif //LFSIMFEATUREHANDLER_H