~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/inc/Puma/ACIntroducer.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:
25
25
 
26
26
namespace Puma {
27
27
  class CT_ClassDef;
 
28
  class CT_Program;
28
29
}
29
30
 
30
31
namespace Puma {
35
36
  
36
37
  // called when a new class/union/struct/aspect is created, current scope
37
38
  // is the global scope
38
 
  virtual void class_before (CT_ClassDef*) {};
 
39
  virtual void class_before (CT_ClassDef*) {}
39
40
 
40
41
  // called when a new class/union/struct/aspect body is parsed
41
 
  virtual void class_begin (CT_ClassDef*) {};
 
42
  virtual void class_begin (CT_ClassDef*) {}
42
43
 
43
44
  // called when a new class/union/struct/aspect definition ends
44
45
  // (still in the class scope)
45
 
  virtual void class_end (CT_ClassDef*, CTree*) {};
 
46
  virtual void class_end (CT_ClassDef*) {}
 
47
  
 
48
  // called after the parser tried to parse a base clause
 
49
  virtual void base_clause_end (CT_ClassDef*, Token*) {}
 
50
  
 
51
  // called after the program has been parsed completely
 
52
  virtual void trans_unit_end (CT_Program*) {}
46
53
};
47
54
 
48
55
} // namespace Puma