~ubuntu-branches/ubuntu/natty/aspectc++/natty

« back to all changes in this revision

Viewing changes to Puma/src/common/Location.h

  • 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
// This file is part of PUMA.
 
2
// Copyright (C) 1999-2003  The PUMA developer team.
 
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 __location_h__
 
20
#define __location_h__
 
21
 
 
22
#include "Puma/SmartPtr.h"
 
23
#include "Puma/Printable.h"
 
24
#include "Puma/LocationInfo.h"
 
25
 
 
26
namespace Puma {
 
27
 
 
28
 
 
29
class Location : public SmartPtr, public Printable {
 
30
  LocationInfo *info () const { return (LocationInfo*)data (); }
 
31
 
 
32
public:
 
33
  Location () {}
 
34
  Location (Filename f, int l) { setup (f, l); }
 
35
  Location (LocationInfo *lptr) : SmartPtr (lptr) {}
 
36
  LocationInfo *operator ~ () { if (info ()) info ()->ref (); return info (); }
 
37
  void setup (Filename f, int l);
 
38
  const Filename &filename () const   { return info ()->filename (); }
 
39
  int line () const;
 
40
  bool operator == (const Location &l) const;
 
41
  bool operator != (const Location &l) const { return ! (*this == l); }
 
42
  bool operator < (const Location &l) const;
 
43
 
 
44
  virtual void print (ostream &os) const {
 
45
    if (info ())
 
46
#ifdef VISUAL_STUDIO
 
47
      os << filename () << "(" << line () << ")";
 
48
#else
 
49
      os << filename () << ":" << line ();
 
50
#endif
 
51
  }
 
52
};
 
53
 
 
54
 
 
55
} // namespace Puma
 
56
 
 
57
#endif /* __location_h__ */