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

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/inc/Puma/CTypeQualified.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:
28
28
 
29
29
 
30
30
class CTypeQualified : public CTypeInfo {
31
 
  bool _Const;
32
 
  bool _Volatile;
33
 
  bool _Restrict;
 
31
  bool _QualConst;
 
32
  bool _QualVolatile;
 
33
  bool _QualRestrict;
34
34
 
35
35
protected:
36
36
  CTypeQualified (CTypeInfo *, bool, bool, bool, TypeId);
51
51
inline CTypeQualified::CTypeQualified (CTypeInfo *base, bool c, bool v, bool r, 
52
52
 CTypeInfo::TypeId id) :
53
53
  CTypeInfo (base, id),
54
 
  _Const (c),
55
 
  _Volatile (v),
56
 
  _Restrict (r)
 
54
  _QualConst (c),
 
55
  _QualVolatile (v),
 
56
  _QualRestrict (r)
57
57
 {}
58
58
inline CTypeQualified::CTypeQualified (CTypeInfo *base, bool c, bool v, bool r) :
59
59
  CTypeInfo (base, CTypeInfo::TYPE_QUALIFIED),
60
 
  _Const (c),
61
 
  _Volatile (v),
62
 
  _Restrict (r)
 
60
  _QualConst (c),
 
61
  _QualVolatile (v),
 
62
  _QualRestrict (r)
63
63
 {}
64
64
inline CTypeQualified::~CTypeQualified ()
65
65
 {}
66
66
 
67
67
inline bool CTypeQualified::isConst () const
68
 
 { return _Const; }
 
68
 { return _QualConst; }
69
69
inline bool CTypeQualified::isVolatile () const
70
 
 { return _Volatile; }
 
70
 { return _QualVolatile; }
71
71
inline bool CTypeQualified::isRestrict () const
72
 
 { return _Restrict; }
 
72
 { return _QualRestrict; }
73
73
 
74
74
inline void CTypeQualified::isConst (bool v)
75
 
 { _Const = v; }
 
75
 { _QualConst = v; }
76
76
inline void CTypeQualified::isVolatile (bool v)
77
 
 { _Volatile = v; }
 
77
 { _QualVolatile = v; }
78
78
inline void CTypeQualified::isRestrict (bool v)
79
 
 { _Restrict = v; }
 
79
 { _QualRestrict = v; }
80
80
 
81
81
 
82
82
} // namespace Puma