~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to AspectC++/tests/AccessControl/feature.ref

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AccessControl: advice for calls with special privileges
 
2
=======================================================
 
3
call to int Derived::val()
 
4
 --> call to private member from constructor init list
 
5
call to void Derived::g1()
 
6
 --> public
 
7
call to void Derived::p()
 
8
 --> private in same class
 
9
call to void Base::f()
 
10
 --> protected in base
 
11
call to void Base::x()
 
12
call to void HasFriend::h()
 
13
Calls2: call to void HasFriend::h()
 
14
Calls3: call to void HasFriend::h()
 
15
 --> access for friend Base::x() only
 
16
call to void Derived::g2()
 
17
 --> public
 
18
call to void Derived::p()
 
19
 --> private in same class
 
20
call to void Base::f()
 
21
 --> protected in base
 
22
call to void Base::x()
 
23
call to void HasFriend::h()
 
24
Calls2: call to void HasFriend::h()
 
25
Calls3: call to void HasFriend::h()
 
26
 --> access for friend Base::x() only
 
27
=======================================================