diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-20 18:21:03 +0000 |
commit | c435c7daa9df1b08dc85132fcd1c154bea9b69e2 (patch) | |
tree | 5537f3c91a67b35c4c8aa918b708b7e4aad8f146 /src/location.h | |
parent | 59690513123de8904eef2a03fe7fcaaed98b1b7b (diff) | |
download | build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.gz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.bz2 build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.tar.xz build-c435c7daa9df1b08dc85132fcd1c154bea9b69e2.zip |
Fixes to use libbu++ Bu::String
Diffstat (limited to '')
-rw-r--r-- | src/location.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/location.h b/src/location.h index 76699e3..db329bb 100644 --- a/src/location.h +++ b/src/location.h | |||
@@ -1,19 +1,19 @@ | |||
1 | #ifndef LOCATION_H | 1 | #ifndef LOCATION_H |
2 | #define LOCATION_H | 2 | #define LOCATION_H |
3 | 3 | ||
4 | #include <bu/fstring.h> | 4 | #include <bu/string.h> |
5 | 5 | ||
6 | class Location | 6 | class Location |
7 | { | 7 | { |
8 | public: | 8 | public: |
9 | Location(); | 9 | Location(); |
10 | Location( struct YYLTYPE &loc ); | 10 | Location( struct YYLTYPE &loc ); |
11 | Location( const Bu::FString &sFile, int iStartRow, int iStartCol, | 11 | Location( const Bu::String &sFile, int iStartRow, int iStartCol, |
12 | int iEndRow, int iEndCol ); | 12 | int iEndRow, int iEndCol ); |
13 | virtual ~Location(); | 13 | virtual ~Location(); |
14 | 14 | ||
15 | private: | 15 | private: |
16 | const Bu::FString sFile; | 16 | const Bu::String sFile; |
17 | int iStartRow; | 17 | int iStartRow; |
18 | int iStartCol; | 18 | int iStartCol; |
19 | int iEndRow; | 19 | int iEndRow; |