~ubuntu-branches/ubuntu/utopic/kdevelop-php/utopic

« back to all changes in this revision

Viewing changes to duchain/classdeclaration.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2010-01-17 17:10:22 UTC
  • Revision ID: james.westby@ubuntu.com-20100117171022-q2xlgd9ekewo2ijx
Tags: upstream-1.0.0~beta2
ImportĀ upstreamĀ versionĀ 1.0.0~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   This file is part of KDevelop                                         *
 
3
 *   Copyright 2008 Milian Wolff <mail@milianw.de>                         *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU Library General Public License as       *
 
7
 *   published by the Free Software Foundation; either version 2 of the    *
 
8
 *   License, or (at your option) any later version.                       *
 
9
 *                                                                         *
 
10
 *   This program 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         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU Library General Public     *
 
16
 *   License along with this program; if not, write to the                 *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef PHP_CLASSDECLARATION_H
 
22
#define PHP_CLASSDECLARATION_H
 
23
 
 
24
#include <language/duchain/classdeclaration.h>
 
25
 
 
26
#include <language/duchain/declaration.h>
 
27
#include <language/duchain/declarationdata.h>
 
28
#include <language/duchain/indexedstring.h>
 
29
 
 
30
#include "phpduchainexport.h"
 
31
namespace Php
 
32
{
 
33
 
 
34
class KDEVPHPDUCHAIN_EXPORT ClassDeclarationData : public KDevelop::ClassDeclarationData
 
35
{
 
36
public:
 
37
    ClassDeclarationData()
 
38
            : KDevelop::ClassDeclarationData() {}
 
39
 
 
40
    ClassDeclarationData(const ClassDeclarationData& rhs)
 
41
            : KDevelop::ClassDeclarationData(rhs)
 
42
    {
 
43
        prettyName = rhs.prettyName;
 
44
    }
 
45
 
 
46
    ~ClassDeclarationData() {}
 
47
 
 
48
    KDevelop::IndexedString prettyName;
 
49
};
 
50
 
 
51
class KDEVPHPDUCHAIN_EXPORT ClassDeclaration : public KDevelop::ClassDeclaration
 
52
{
 
53
public:
 
54
    ClassDeclaration(const ClassDeclaration &rhs);
 
55
    ClassDeclaration(const KDevelop::SimpleRange &range, KDevelop::DUContext *context);
 
56
    ClassDeclaration(ClassDeclarationData &data);
 
57
    ClassDeclaration(ClassDeclarationData &data, const KDevelop::SimpleRange &range, KDevelop::DUContext *context);
 
58
    ~ClassDeclaration();
 
59
 
 
60
    virtual QString toString() const;
 
61
 
 
62
    void setPrettyName(const QString& name);
 
63
    QString prettyName() const;
 
64
 
 
65
    enum {
 
66
        Identity = 85
 
67
    };
 
68
 
 
69
    virtual KDevelop::Declaration* clonePrivate() const;
 
70
private:
 
71
    DUCHAIN_DECLARE_DATA(ClassDeclaration)
 
72
};
 
73
 
 
74
}
 
75
 
 
76
#endif // PHP_CLASSDECLARATION_H