birdbadge/src/response/notfound.h

17 lines
277 B
C
Raw Normal View History

2023-04-18 16:16:36 +00:00
#pragma once
#include "response.h"
class NotFound: public Response {
friend class Response;
public:
~NotFound() override;
void writeHeader(std::ostream & out) const override;
void writeBody(std::ostream & out) const override;
protected:
NotFound();
};