/* This file is part of KDevelop Copyright 2002-2005 Roberto Raggi This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef CODEMODEL_FWD_H #define CODEMODEL_FWD_H #include "kdevsharedptr.h" #include // forward declarations class CodeModel; class _ArgumentModelItem; class _ClassModelItem; class _CodeModelItem; class _EnumModelItem; class _EnumeratorModelItem; class _FileModelItem; class _FunctionDefinitionModelItem; class _FunctionModelItem; class _NamespaceModelItem; class _ScopeModelItem; class _TemplateModelItem; class _TemplateParameterModelItem; class _TypeAliasModelItem; class _VariableModelItem; class _MemberModelItem; typedef KDevelop::SharedPtr<_ArgumentModelItem> ArgumentModelItem; typedef KDevelop::SharedPtr<_ClassModelItem> ClassModelItem; typedef KDevelop::SharedPtr<_CodeModelItem> CodeModelItem; typedef KDevelop::SharedPtr<_EnumModelItem> EnumModelItem; typedef KDevelop::SharedPtr<_EnumeratorModelItem> EnumeratorModelItem; typedef KDevelop::SharedPtr<_FileModelItem> FileModelItem; typedef KDevelop::SharedPtr<_FunctionDefinitionModelItem> FunctionDefinitionModelItem; typedef KDevelop::SharedPtr<_FunctionModelItem> FunctionModelItem; typedef KDevelop::SharedPtr<_NamespaceModelItem> NamespaceModelItem; typedef KDevelop::SharedPtr<_ScopeModelItem> ScopeModelItem; typedef KDevelop::SharedPtr<_TemplateModelItem> TemplateModelItem; typedef KDevelop::SharedPtr<_TemplateParameterModelItem> TemplateParameterModelItem; typedef KDevelop::SharedPtr<_TypeAliasModelItem> TypeAliasModelItem; typedef KDevelop::SharedPtr<_VariableModelItem> VariableModelItem; typedef KDevelop::SharedPtr<_MemberModelItem> MemberModelItem; typedef QList ArgumentList; typedef QList ClassList; typedef QList CodeList; typedef QList ItemList; typedef QList EnumList; typedef QList EnumeratorList; typedef QList FileList; typedef QList FunctionDefinitionList; typedef QList FunctionList; typedef QList NamespaceList; typedef QList ScopeList; typedef QList TemplateList; typedef QList TemplateParameterList; typedef QList TypeAliasList; typedef QList VariableList; typedef QList MemberList; #endif // CODEMODEL_FWD_H