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

« back to all changes in this revision

Viewing changes to AspectC++/tests/PrivateResult/Aspect.ah

  • 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:
34
34
  advice execution ("Safe g(...)") && result (safe) : after (Safe safe) {
35
35
    cout << "execution result 3: " << safe << endl;
36
36
  }
 
37
  advice execution ("% Safe::uses_private_inner%(...)") : before () {
 
38
    cout << "execution (\"" << JoinPoint::signature () << "\")" << endl;
 
39
  }
 
40
  advice execution ("AUnion h()") : after () {
 
41
    cout << "execution (\"" << JoinPoint::signature () << "\")" << endl;
 
42
  }
37
43
};
38
44
 
39
45
#endif // __Aspect_h__