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

« back to all changes in this revision

Viewing changes to CodeLite/expression_result.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:
2
2
#define EXPRESSION_RESULT_H
3
3
 
4
4
#include "string"
 
5
#include <stdio.h>
5
6
 
6
7
class ExpressionResult
7
8
{
8
9
public:
9
 
        
10
 
        bool                    m_isFunc;
 
10
 
 
11
        bool        m_isFunc;
11
12
        std::string m_name;
12
 
        bool                    m_isThis;
13
 
        bool                    m_isaType;
14
 
        bool                    m_isPtr;
 
13
        bool        m_isThis;
 
14
        bool        m_isaType;
 
15
        bool        m_isPtr;
15
16
        std::string m_scope;
16
 
        bool                    m_isTemplate;
 
17
        bool        m_isTemplate;
17
18
        std::string m_templateInitList;
 
19
 
18
20
public:
19
21
        ExpressionResult();
20
22
        virtual ~ExpressionResult();