/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2007, 2008, 2009, 2010 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_FWD_HH #define PALUDIS_GUARD_PALUDIS_DEP_LABEL_FWD_HH 1 #include #include #include #include /** \file * Forward declarations for paludis/dep_label.hh . * * \ingroup g_dep_spec */ namespace paludis { struct URILabel; template struct SpecificURILabel; struct URIMirrorsThenListedLabelTag; typedef SpecificURILabel URIMirrorsThenListedLabel; struct URIMirrorsOnlyLabelTag; typedef SpecificURILabel URIMirrorsOnlyLabel; struct URIListedOnlyLabelTag; typedef SpecificURILabel URIListedOnlyLabel; struct URIListedThenMirrorsLabelTag; typedef SpecificURILabel URIListedThenMirrorsLabel; struct URILocalMirrorsOnlyLabelTag; typedef SpecificURILabel URILocalMirrorsOnlyLabel; struct URIManualOnlyLabelTag; typedef SpecificURILabel URIManualOnlyLabel; /** * A URILabel can be written to a stream. * * \ingroup g_dep_spec * \since 0.26 */ std::ostream & operator<< (std::ostream &, const URILabel &) PALUDIS_VISIBLE; struct DependenciesLabel; template struct SpecificDependenciesLabel; /** * Tag for DependenciesBuildLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesBuildLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesBuildLabel; /** * Tag for DependenciesRunLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesRunLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesRunLabel; /** * Tag for DependenciesPostLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesPostLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesPostLabel; /** * Tag for DependenciesCompileAgainstLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesCompileAgainstLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesCompileAgainstLabel; /** * Tag for DependenciesFetchLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesFetchLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesFetchLabel; /** * Tag for DependenciesInstallLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesInstallLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesInstallLabel; /** * Tag for DependenciesSuggestionLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesSuggestionLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesSuggestionLabel; /** * Tag for DependenciesRecommendationLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesRecommendationLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesRecommendationLabel; /** * Tag for DependenciesTestLabel. * * \since 0.42 * \ingroup g_dep_spec */ struct DependenciesTestLabelTag; /** * Dependencies label. * * \since 0.42 * \ingroup g_dep_spec */ typedef SpecificDependenciesLabel DependenciesTestLabel; /** * A collection of DependencyLabel instances. * * \ingroup g_dep_spec * \since 0.42 */ typedef Sequence > DependenciesLabelSequence; /** * A DependenciesLabel can be written to a stream. * * \ingroup g_dep_spec * \since 0.42 */ std::ostream & operator<< (std::ostream &, const DependenciesLabel &) PALUDIS_VISIBLE; } #endif