mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
Update amalgamate
This commit is contained in:
parent
3081e4e1a8
commit
6410907234
@ -6324,14 +6324,15 @@ constexpr crow::HTTPMethod operator "" _method(const char* str, size_t /*len*/)
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#include <boost/asio.hpp>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
namespace crow
|
||||
{
|
||||
template <typename T>
|
||||
@ -7074,6 +7075,7 @@ namespace crow
|
||||
|
||||
|
||||
|
||||
|
||||
namespace crow
|
||||
{
|
||||
template <typename Adaptor, typename Handler, typename ... Middlewares>
|
||||
@ -9599,5 +9601,53 @@ namespace crow
|
||||
using App = Crow<Middlewares...>;
|
||||
using SimpleApp = Crow<>;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -12,6 +12,7 @@ if len(sys.argv) > 1:
|
||||
OUTPUT = 'crow_all.h'
|
||||
re_depends = re.compile('^#include "(.*)"', re.MULTILINE)
|
||||
headers = [x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, '*.h*'))]
|
||||
headers += ['crow/' + x.rsplit('/', 1)[-1] for x in glob(pt.join(header_path, 'crow/*.h*'))]
|
||||
print(headers)
|
||||
edges = defaultdict(list)
|
||||
for header in headers:
|
||||
|
Loading…
Reference in New Issue
Block a user