Update amalgamate

This commit is contained in:
ipknHama 2016-09-21 23:17:29 +09:00
parent 3081e4e1a8
commit 6410907234
2 changed files with 57 additions and 6 deletions

View File

@ -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

View File

@ -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: