HTTPStatusHeader.h
Go to the documentation of this file.
1/* -*-mode:c++; c-file-style: "gnu";-*- */
2/*
3 * $Id: HTTPStatusHeader.h,v 1.8 2014/04/23 20:55:09 sebdiaz Exp $
4 *
5 * Copyright (C) 1996 - 2004 Stephen F. Booth <sbooth@gnu.org>
6 * 2007 Sebastien DIAZ <sebastien.diaz@gmail.com>
7 * Part of the GNU cgicc library, http://www.gnu.org/software/cgicc
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 3 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
22 */
23
24#ifndef _HTTPSTATUSHEADER_H_
25#define _HTTPSTATUSHEADER_H_ 1
26
27#ifdef __GNUG__
28# pragma interface
29#endif
30
36#include <string>
37
38#include "HTTPHeader.h"
39
40namespace cgicc {
41
42 // ============================================================
43 // Class HTTPStatusHeader
44 // ============================================================
45
50 class CGICC_API HTTPStatusHeader : public HTTPHeader
51 {
52 public:
53
60 HTTPStatusHeader(int status,
61 const std::string& message);
62
65
70 inline int
72 { return fStatus; }
73
74
79 virtual void
80 render(std::ostream& out) const;
81
82 private:
84 int fStatus;
85 };
86
87} // namespace cgicc
88
89#endif /* ! _HTTPSTATUSHEADER_H_ */
Abstract base class for simple HTTP headers.
Abstract base class for all simple HTTP response headers.
Definition: HTTPHeader.h:53
HTTP header to set a specific request status.
virtual void render(std::ostream &out) const
Write this HTTPStatusHeader to a stream.
int getStatusCode() const
Get the status code associated with this header.
virtual ~HTTPStatusHeader()
Destructor.
HTTPStatusHeader(int status, const std::string &message)
Create a new status header.
The namespace containing the cgicc library.
Definition: Cgicc.h:52

GNU cgicc - A C++ class library for writing CGI applications
Copyright © 1996 - 2004 Stephen F. Booth
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front Cover Texts, and with no Back-Cover Texts.
Documentation generated Fri Mar 1 2024 08:39:41 for cgicc by doxygen 1.9.6