/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General * Public License version 2, as published by the Free Software Foundation. * * Paludis 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, write to the Free Software Foundation, Inc., 59 Temple * Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef PALUDIS_GUARD_PALUDIS_DEP_LABEL_HH #define PALUDIS_GUARD_PALUDIS_DEP_LABEL_HH 1 #include #include #include #include #include #include #include #include #include #include /** \file * Declarations for dependency label-related classes. * * \ingroup g_dep_spec * * \section Examples * * - \ref example_dep_label.cc "example_dep_label.cc" * - \ref example_dep_spec.cc "example_dep_spec.cc" (for specifications) * - \ref example_dep_tag.cc "example_dep_tag.cc" (for tags) */ namespace paludis { /** * URI label base class. * * \since 0.26 * \ingroup g_dep_spec * \nosubgrouping */ class PALUDIS_VISIBLE URILabel : public virtual DeclareAbstractAcceptMethods::Type> { public: ///\name Basic operations ///\{ URILabel() = default; virtual ~URILabel() = 0; URILabel(const URILabel &) = delete; URILabel & operator= (const URILabel &) = delete; ///\} /// Our text. virtual const std::string text() const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; }; /** * A concrete URI label class. * * \since 0.26 * \ingroup g_dep_spec * \nosubgrouping */ template class PALUDIS_VISIBLE SpecificURILabel : public URILabel, public ImplementAcceptMethods > { private: const std::string _text; public: ///\name Basic operations ///\{ SpecificURILabel(const std::string &); ~SpecificURILabel(); ///\} virtual const std::string text() const PALUDIS_ATTRIBUTE((warn_unused_result)); /// Convenience typedef alias to obtain our tag. typedef T_ Tag; }; /** * Dependencies label base class. * * \since 0.42 * \ingroup g_dep_spec */ class PALUDIS_VISIBLE DependenciesLabel : public virtual DeclareAbstractAcceptMethods::Type> { public: ///\name Basic operations ///\{ DependenciesLabel() = default; virtual ~DependenciesLabel() = 0; DependenciesLabel(const DependenciesLabel &) = delete; DependenciesLabel & operator= (const DependenciesLabel &) = delete; ///\} /// Our text. virtual const std::string text() const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; /** * Are we enabled? * * \since 0.58 takes env, package_id */ virtual bool enabled( const Environment * const, const std::shared_ptr &) const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; }; /** * A concrete dependencies label class. * * \since 0.42 * \ingroup g_dep_spec */ template class PALUDIS_VISIBLE SpecificDependenciesLabel : public DependenciesLabel, public ImplementAcceptMethods > { public: /// Convenience typedef alias to obtain our tag. typedef T_ Tag; }; extern template class SpecificURILabel; extern template class SpecificURILabel; extern template class SpecificURILabel; extern template class SpecificURILabel; extern template class SpecificURILabel; extern template class SpecificURILabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class SpecificDependenciesLabel; extern template class WrappedForwardIterator >::ConstIteratorTag, const std::shared_ptr >; } #endif