diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-06-15 15:03:41 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-06-15 15:39:20 +0200 |
commit | dbba0ff8d7456de3d8e7cc2796c48fcbc700acf1 (patch) | |
tree | d0724a1110420c55e9674bec08bbf3ade8ece6f1 /src/shared/cplusplus/Control.h | |
parent | 1754aefdb165c64ae0751864c58f02d0c24cd664 (diff) | |
download | qt-creator-dbba0ff8d7456de3d8e7cc2796c48fcbc700acf1.tar.gz |
Removed the filename literals.
Diffstat (limited to 'src/shared/cplusplus/Control.h')
-rw-r--r-- | src/shared/cplusplus/Control.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/shared/cplusplus/Control.h b/src/shared/cplusplus/Control.h index 0210de8333..6d7fecc8c1 100644 --- a/src/shared/cplusplus/Control.h +++ b/src/shared/cplusplus/Control.h @@ -153,7 +153,6 @@ public: typedef const Identifier *const *IdentifierIterator; typedef const StringLiteral *const *StringLiteralIterator; typedef const NumericLiteral *const *NumericLiteralIterator; - typedef const StringLiteral *const *FileNameIterator; IdentifierIterator firstIdentifier() const; IdentifierIterator lastIdentifier() const; @@ -164,21 +163,12 @@ public: NumericLiteralIterator firstNumericLiteral() const; NumericLiteralIterator lastNumericLiteral() const; - FileNameIterator firstFileName() const; - FileNameIterator lastFileName() const; - StringLiteral *findOrInsertStringLiteral(const char *chars, unsigned size); StringLiteral *findOrInsertStringLiteral(const char *chars); NumericLiteral *findOrInsertNumericLiteral(const char *chars, unsigned size); NumericLiteral *findOrInsertNumericLiteral(const char *chars); - StringLiteral *findOrInsertFileName(const char *chars, unsigned size); - StringLiteral *findOrInsertFileName(const char *chars); - - unsigned fileNameCount() const; - StringLiteral *fileNameAt(unsigned index) const; - private: class Data; friend class Data; |