Google
Web alhem.net

Header.h

Go to the documentation of this file.
00001 // Header.h
00002 /*
00003 Copyright (C) 2003  Anders Hedstrom
00004 
00005 This program is free software; you can redistribute it and/or
00006 modify it under the terms of the GNU General Public License
00007 as published by the Free Software Foundation; either version 2
00008 of the License, or (at your option) any later version.
00009 
00010 This program is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 GNU General Public License for more details.
00014 
00015 You should have received a copy of the GNU General Public License
00016 along with this program; if not, write to the Free Software
00017 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00018 */
00019 
00020 #ifndef _HEADER_H
00021 #define _HEADER_H
00022 
00023 #ifdef _WIN32
00024 #define STL_USING_LIST
00025 #include <stlhelper.h>
00026 #else
00027 #include <list>
00028 #endif
00029 
00030 
00031 namespace Cgi {
00032 
00033 struct HEADER
00034 {
00035 //      struct headerstruct *next;
00036         char *name;
00037         char *value;
00038 };
00039 typedef std::list<HEADER *> header_v;
00040 
00041 class Header {
00042 public:
00043         Header();
00044         Header(char *,int);
00045         ~Header();
00046         int getvalue(char *,char *,short); // (name, buffer, length)
00047         void replacevalue(char *,char *);
00048         int getlength(char *);
00049 
00050         /* get names */
00051         void getfirst(char *,short);
00052         void getnext(char *,short);
00053         int getindex() { return dataindex; }
00054 
00055 private:
00056         Header(const Header& );
00057         Header& operator=(const Header& );
00058 //      HEADER *headerbase;
00059         header_v m_headers;
00060 //      HEADER *current;
00061         header_v::iterator m_current;
00062         int dataindex;
00063 };
00064 } // namespace
00065 
00066 #endif // _HEADER_H

Generated for cgi++ by doxygen 1.3.7

Page, code, and content Copyright (C) 2004 by Anders Hedström