This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CXX ?= clang++ | |
CFLAGS = -std=c++14 -MMD -MP -Wall -Wextra | |
CFLAGS_DEBUG = -g -O0 | |
CFLAGS_RELEASE = -O3 | |
LDFLAGS = -lpthread -lboost_system | |
buildtype := release | |
ifeq ($(buildtype), debug) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <type_traits> | |
#include <vector> | |
#include <unordered_set> | |
#include <set> | |
#include <functional> | |
#include <boost/optional.hpp> | |
namespace astarpp | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <array> | |
#include <map> | |
#include <algorithm> | |
#include <boost/iterator/transform_iterator.hpp> | |
#include <boost/numeric/odeint.hpp> | |
namespace cvcpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iomanip> | |
#include <kumori/kumori.hpp> | |
class application_server : public kumori::http_server<application_server> | |
{ | |
public: | |
explicit application_server(boost::asio::io_service& service) | |
: http_server(service) |
NewerOlder