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

« back to all changes in this revision

Viewing changes to AspectC++/tests/AccessControl/main.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20080410174052-dbne39zue793jgrh
Tags: upstream-1.0pre4~svn.20080409+dfsg
ImportĀ upstreamĀ versionĀ 1.0pre4~svn.20080409+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
  advice call ("% %::%(...)") : before () {
5
5
    printf ("call to %s\n", tjp->signature ());
6
6
  }
 
7
  advice call ("% %::%(...)") : around () {
 
8
    printf ("around1: call to %s\n", tjp->signature ());
 
9
    tjp->proceed ();
 
10
  }
 
11
  advice call ("% %::%(...)") : around () {
 
12
    printf ("around2: call to %s\n", tjp->signature ());
 
13
    tjp->proceed ();
 
14
  }
7
15
};
8
16
 
9
17
aspect Calls2 {