~ubuntu-branches/ubuntu/oneiric/codelite/oneiric

« back to all changes in this revision

Viewing changes to CodeLite/function.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-05-27 04:16:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090527041642-0yz67hytd4qnpzka
Tags: 1.0.2841+dfsg-0ubuntu1
* New upstream release (LP: #380732)
* debian/*.lintian-overrides:
  + Drop them, they're pointless anyway
* debian/control,
  debian/rules,
  debian/README.source:
  + Use DH 7.0.50, with override rules instead of CDBS
  + Bump quilt version to 0.46-7 for DH integration
  + Tidy up get-orig-source rule
* debian/patches/01_symlink.patch:
  + Dropped, applied upstream
* debian/patches/03_cstdio-include.patch:
  + Dropped, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include "string"
5
5
#include "list"
6
6
#include "variable.h"
 
7
#include <stdio.h>
7
8
 
8
9
class clFunction
9
10
{
10
11
public:
11
 
        std::string     m_name;
12
 
        std::string             m_scope;                                        //functions' scope
13
 
        std::string     m_retrunValusConst;                     // is the return value a const?
14
 
        std::string     m_signature;
15
 
        Variable                m_returnValue;
16
 
        int                     m_lineno;
17
 
        bool                    m_isVirtual;
18
 
        bool                    m_isPureVirtual;
19
 
        bool                    m_isConst;
20
 
        
 
12
        std::string     m_name;
 
13
        std::string     m_scope;                                        //functions' scope
 
14
        std::string     m_retrunValusConst;                     // is the return value a const?
 
15
        std::string     m_signature;
 
16
        Variable        m_returnValue;
 
17
        int             m_lineno;
 
18
        bool            m_isVirtual;
 
19
        bool            m_isPureVirtual;
 
20
        bool            m_isConst;
 
21
 
21
22
public:
22
23
        clFunction();
23
24
        virtual ~clFunction();
24
25
 
25
26
        //clear the class content
26
27
        void Reset();
27
 
        
 
28
 
28
29
        //print the variable to stdout
29
30
        void Print();
30
31
};