Add AbstractDeclarationNavigationContext, and move the html-method from
[kdevelopdvcssupport.git] / language / duchain / classmemberdeclarationdata.h
blobaa71e86510a96fdc73940f75ebc2232e4754e55e
1 /* This is part of KDevelop
2 Copyright 2002-2005 Roberto Raggi <roberto@kdevelop.org>
3 Copyright 2006 Adam Treat <treat@kde.org>
4 Copyright 2006 Hamish Rodda <rodda@kde.org>
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public
8 License version 2 as published by the Free Software Foundation.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
21 #ifndef CLASSMEMBERDECLARATIONDATA_H
22 #define CLASSMEMBERDECLARATIONDATA_H
24 #include "declarationdata.h"
25 #include "../languageexport.h"
27 namespace KDevelop
30 class KDEVPLATFORMLANGUAGE_EXPORT ClassMemberDeclarationData : public DeclarationData
32 public:
33 ClassMemberDeclarationData();
34 ClassMemberDeclarationData( const ClassMemberDeclarationData& rhs );
36 Declaration::AccessPolicy m_accessPolicy;
37 bool m_isStatic: 1;
38 bool m_isAuto: 1;
39 bool m_isFriend: 1;
40 bool m_isRegister: 1;
41 bool m_isExtern: 1;
42 bool m_isMutable: 1;
47 #endif