SVNからのミラー

This commit is contained in:
2026-01-21 04:06:54 +09:00
commit fe74b223ce
35 changed files with 14669 additions and 0 deletions

19
crow/returnable.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <string>
namespace crow
{
/// An abstract class that allows any other class to be returned by a handler.
struct returnable
{
std::string content_type;
virtual std::string dump() const = 0;
returnable(std::string ctype):
content_type{ctype}
{}
virtual ~returnable(){};
};
} // namespace crow