NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
websocketpp.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_FACE_WEBSOCKETPP_HPP
27 #define NFD_DAEMON_FACE_WEBSOCKETPP_HPP
28 
29 #ifndef HAVE_WEBSOCKET
30 #error "This file must not be included when WebSocket Face support is disabled"
31 #endif
32 
33 // suppress websocketpp warnings
34 #pragma GCC system_header
35 #pragma clang system_header
36 
37 #include "websocketpp/config/asio_no_tls.hpp"
38 #include "websocketpp/server.hpp"
39 
40 #endif // NFD_DAEMON_FACE_WEBSOCKETPP_HPP