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

« back to all changes in this revision

Viewing changes to AspectC++/PointCutInfo.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:
1
 
// This file is part of the AspectC++ compiler 'ac++'.
2
 
// Copyright (C) 1999-2003  The 'ac++' developers (see aspectc.org)
3
 
//                                                                
4
 
// This program is free software;  you can redistribute it and/or 
5
 
// modify it under the terms of the GNU General Public License as 
6
 
// published by the Free Software Foundation; either version 2 of 
7
 
// the License, or (at your option) any later version.            
8
 
//                                                                
9
 
// This program is distributed in the hope that it will be useful,
10
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
11
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  
12
 
// GNU General Public License for more details.                   
13
 
//                                                                
14
 
// You should have received a copy of the GNU General Public      
15
 
// License along with this program; if not, write to the Free     
16
 
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
17
 
// MA  02111-1307  USA                                            
18
 
 
19
 
#ifndef __PointCutInfo_h__
20
 
#define __PointCutInfo_h__
21
 
 
22
 
/* #include "Puma/TN_FunctionInfo.h" */
23
 
 
24
 
/* class AspectInfo; */
25
 
/* class CpppAst_PointCutDecl; */
26
 
 
27
 
/* class PointCutInfo */
28
 
/*  { */
29
 
/*       TN_FunctionInfo *_function; */
30
 
/*       AspectInfo *_aspect; */
31
 
/*       CpppAst_PointCutDecl *_def_node; */
32
 
      
33
 
/*    public: */
34
 
 
35
 
/*       PointCutInfo (TN_FunctionInfo *f) : */
36
 
/*       _function (f), _aspect ((AspectInfo*)0), */
37
 
/*        _def_node ((CpppAst_PointCutDecl *)0) {} */
38
 
/*       const char *name () { return _function->Name (); } */
39
 
/*       TN_FunctionInfo *function () { return _function; } */
40
 
/*       void aspect (AspectInfo *ai) { _aspect = ai; } */
41
 
/*       AspectInfo *aspect () { return _aspect; } */
42
 
 
43
 
/*       bool is_virtual () */
44
 
/*        { */
45
 
/*       return (_function->isVirtual () || */
46
 
/*               _function->isPureVirtual ());  */
47
 
/*        } */
48
 
/*       bool is_pure () { return _function->isPureVirtual (); } */
49
 
 
50
 
/*       void def_node (CpppAst_PointCutDecl *pcd) { _def_node = pcd; } */
51
 
/*       CpppAst_PointCutDecl *def_node () { return _def_node; } */
52
 
/*  }; */
53
 
 
54
 
#endif // __PointCutInfo_h__