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

« back to all changes in this revision

Viewing changes to duchain/variabledeclaration.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 Niko Sams <niko.sams@gmail.com>                        *
 
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 VARIABLEDECLARATION_H
 
22
#define VARIABLEDECLARATION_H
 
23
 
 
24
#include <language/duchain/declaration.h>
 
25
#include <language/duchain/declarationdata.h>
 
26
 
 
27
#include "phpduchainexport.h"
 
28
 
 
29
namespace Php
 
30
{
 
31
 
 
32
class KDEVPHPDUCHAIN_EXPORT VariableDeclarationData : public KDevelop::DeclarationData
 
33
{
 
34
public:
 
35
    VariableDeclarationData()
 
36
            : KDevelop::DeclarationData(), m_isSuperglobal(false) {
 
37
    }
 
38
 
 
39
    VariableDeclarationData(const VariableDeclarationData& rhs)
 
40
            : KDevelop::DeclarationData(rhs) {
 
41
        m_isSuperglobal = rhs.m_isSuperglobal;
 
42
    }
 
43
 
 
44
    ~VariableDeclarationData() {
 
45
    }
 
46
 
 
47
bool m_isSuperglobal;
 
48
};
 
49
 
 
50
/**
 
51
 * Declaration used for Php variables eg. $a = 0;
 
52
 */
 
53
class KDEVPHPDUCHAIN_EXPORT VariableDeclaration : public KDevelop::Declaration
 
54
{
 
55
public:
 
56
    VariableDeclaration(const VariableDeclaration& rhs);
 
57
    VariableDeclaration(const KDevelop::SimpleRange& range, KDevelop::DUContext* context);
 
58
    VariableDeclaration(VariableDeclarationData& data);
 
59
    VariableDeclaration(VariableDeclarationData& data, const KDevelop::SimpleRange&);
 
60
    virtual ~VariableDeclaration();
 
61
 
 
62
    bool isSuperglobal() const;
 
63
    void setSuperglobal(bool superglobal);
 
64
 
 
65
    virtual uint additionalIdentity() const;
 
66
    virtual KDevelop::DeclarationId id(bool forceDirect = false) const;
 
67
 
 
68
    enum {
 
69
        Identity = 83
 
70
    };
 
71
    typedef KDevelop::Declaration Base;
 
72
 
 
73
private:
 
74
    DUCHAIN_DECLARE_DATA(VariableDeclaration)
 
75
};
 
76
 
 
77
}
 
78
 
 
79
#endif // VARIABLEDECLARATION_H