diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:42 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:42 +0000 |
commit | a05599f12fd30388ee972ed2535d5297afe0c20b (patch) | |
tree | 330718193e8995ded786e1c7905a63d569af03de /apt-pkg/tagfile.h | |
parent | c9807169492a1f5674fafc0af29eb37a9bbb26b3 (diff) |
Patchs for apt-cdrom
Author: jgg
Date: 1998-11-27 01:14:06 GMT
Patchs for apt-cdrom
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index c97f86d88..7782b54f9 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: tagfile.h,v 1.9 1998/08/26 04:52:24 jgg Exp $ +// $Id: tagfile.h,v 1.10 1998/11/27 01:14:07 jgg Exp $ /* ###################################################################### Fast scanner for RFC-822 type header information @@ -42,9 +42,17 @@ class pkgTagSection inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;}; bool Find(const char *Tag,const char *&Start, const char *&End); + string FindS(const char *Tag); + unsigned int FindI(const char *Tag); bool Scan(const char *Start,unsigned long MaxLength); inline unsigned long size() {return Stop - Section;}; - + + inline void GetSection(const char *&Start,const char *&Stop) + { + Start = Section; + Stop = this->Stop; + }; + pkgTagSection() : Section(0), Stop(0) {}; }; |