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

« back to all changes in this revision

Viewing changes to Puma/src/common/Token.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:
41
41
 
42
42
  Location _location;
43
43
  LanguageID _language;
44
 
  DString _text;
 
44
  const char *_text;
 
45
  mutable DString _dtext;
45
46
 
46
47
  Array<int> *_cont_lines;
47
48
   
82
83
  void macro_generated ()           { _flags |= TK_MACRO_GENERATED; }
83
84
  void macro_call ()                { _flags |= TK_MACRO_CALL; }
84
85
  
85
 
  const DString &text () const     { return _text; }
 
86
  const char *text () const;
 
87
  DString &dtext () const;
86
88
  char *get_static_text () const;
87
89
  int type () const                 { return _type; }
88
90
  const Location &location () const { return _location; }