~ubuntu-branches/ubuntu/quantal/aspectc++/quantal

« back to all changes in this revision

Viewing changes to Puma/src/parser/ccparser/CCSyntax.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    SKIP_BODIES_NONE               = 0x0,  // don't skip function bodies
39
39
    SKIP_BODIES_ALL                = 0x1,  // skip all function bodies
40
40
    SKIP_BODIES_TPL                = 0x2,  // skip function bodies of templates
41
 
    SKIP_BODIES_NON_PRJ            = 0x4   // skip bodies of non-project functions
 
41
    SKIP_BODIES_NON_PRJ            = 0x4,  // skip bodies of non-project functions
 
42
    SKIP_BODIES_NON_PRIM           = 0x8   // skip bodies in non-primary files
42
43
  };
43
44
 
44
45
public:
119
120
  virtual void init_postfix_expr1 ();
120
121
  virtual void init_direct_declarator1 ();
121
122
  
122
 
  
123
123
  // Grammar rules
124
124
public:
125
125
 
196
196
  virtual bool elaborated_type_spec ();
197
197
  virtual CTree *enumerator_list ();
198
198
  virtual CTree *enumerator_def ();
199
 
  virtual CTree *asm_def ();
200
199
  virtual CTree *linkage_spec ();
201
200
 
202
201
  // A.6.1 Namespaces
305
304
  void skip_const_init ();
306
305
  
307
306
protected:
308
 
  bool is_nested (State);
309
 
  bool is_nested_name ();
310
 
  bool is_class_def ();
 
307
  virtual bool is_fct_def ();
 
308
  virtual bool is_nested (State);
 
309
  virtual bool is_nested_name ();
 
310
  virtual bool is_class_def ();
311
311
 
312
312
protected:
313
313
  struct SearchScope { CStructure *scope, *last_scope; bool dep; };