/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qbs. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QBS_LANG_FORWARD_DECLS_H #define QBS_LANG_FORWARD_DECLS_H #include namespace qbs { namespace Internal { enum class ObserveMode; class Value; typedef std::shared_ptr ValuePtr; typedef std::shared_ptr ValueConstPtr; class ItemValue; typedef std::shared_ptr ItemValuePtr; typedef std::shared_ptr ItemValueConstPtr; class JSSourceValue; typedef std::shared_ptr JSSourceValuePtr; typedef std::shared_ptr JSSourceValueConstPtr; class VariantValue; typedef std::shared_ptr VariantValuePtr; typedef std::shared_ptr VariantValueConstPtr; class FileContext; typedef std::shared_ptr FileContextPtr; typedef std::shared_ptr FileContextConstPtr; class FileContextBase; typedef std::shared_ptr FileContextBasePtr; typedef std::shared_ptr FileContextBaseConstPtr; class Probe; typedef std::shared_ptr ProbePtr; typedef std::shared_ptr ProbeConstPtr; class PropertyMapInternal; typedef std::shared_ptr PropertyMapPtr; typedef std::shared_ptr PropertyMapConstPtr; class FileTagger; typedef std::shared_ptr FileTaggerPtr; typedef std::shared_ptr FileTaggerConstPtr; class ResolvedProduct; typedef std::shared_ptr ResolvedProductPtr; typedef std::shared_ptr ResolvedProductConstPtr; class ResolvedProject; typedef std::shared_ptr ResolvedProjectPtr; typedef std::shared_ptr ResolvedProjectConstPtr; class TopLevelProject; typedef std::shared_ptr TopLevelProjectPtr; typedef std::shared_ptr TopLevelProjectConstPtr; class ResolvedFileContext; typedef std::shared_ptr ResolvedFileContextPtr; typedef std::shared_ptr ResolvedFileContextConstPtr; class Rule; typedef std::shared_ptr RulePtr; typedef std::shared_ptr RuleConstPtr; class ResolvedScanner; typedef std::shared_ptr ResolvedScannerPtr; typedef std::shared_ptr ResolvedScannerConstPtr; class SourceArtifactInternal; typedef std::shared_ptr SourceArtifactPtr; typedef std::shared_ptr SourceArtifactConstPtr; class ScriptFunction; typedef std::shared_ptr ScriptFunctionPtr; typedef std::shared_ptr ScriptFunctionConstPtr; class PrivateScriptFunction; class RuleArtifact; typedef std::shared_ptr RuleArtifactPtr; typedef std::shared_ptr RuleArtifactConstPtr; class ResolvedModule; typedef std::shared_ptr ResolvedModulePtr; typedef std::shared_ptr ResolvedModuleConstPtr; class ResolvedGroup; typedef std::shared_ptr GroupPtr; typedef std::shared_ptr GroupConstPtr; class ArtifactProperties; typedef std::shared_ptr ArtifactPropertiesPtr; typedef std::shared_ptr ArtifactPropertiesConstPtr; class ExportedItem; using ExportedItemPtr = std::shared_ptr; class ExportedModule; class ExportedModuleDependency; class ExportedProperty; class PersistentPool; } // namespace Internal } // namespace qbs #ifdef QT_CORE_LIB #include namespace qbs { namespace Internal { template inline static uint qHash(const std::shared_ptr &p, uint seed = 0) { return ::qHash(p.get(), seed); } } // namespace Internal } // namespace qbs #endif #endif // QBS_LANG_FORWARD_DECLS_H