Skip to content

Commit 2b000aa

Browse files
Export parser bases and serializer stream for Windows
1 parent 236b8cc commit 2b000aa

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

include/boost/http_proto/parser.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class static_response;
7070
@ref response_parser,
7171
@ref request_parser.
7272
*/
73-
class parser
73+
class BOOST_HTTP_PROTO_DECL parser
7474
{
7575
public:
7676
struct config_base;
@@ -767,6 +767,7 @@ struct parser::config_base
767767
@ref request_parser.
768768
*/
769769

770+
BOOST_HTTP_PROTO_DECL
770771
void
771772
install_parser_service(
772773
capy::polystore& ctx,

include/boost/http_proto/request_base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace http_proto {
2424
@ref request,
2525
@ref static_request.
2626
*/
27-
class request_base
27+
class BOOST_HTTP_PROTO_DECL request_base
2828
: public message_base
2929
{
3030
friend class request;

include/boost/http_proto/response_base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace http_proto {
2626
@ref response,
2727
@ref static_response.
2828
*/
29-
class response_base
29+
class BOOST_HTTP_PROTO_DECL response_base
3030
: public message_base
3131
{
3232
friend class response;

include/boost/http_proto/serializer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,7 @@ struct serializer::config
663663
@ref serializer.
664664
*/
665665

666+
BOOST_HTTP_PROTO_DECL
666667
void
667668
install_serializer_service(
668669
capy::polystore& ctx,
@@ -691,7 +692,7 @@ install_serializer_service(
691692
@see
692693
@ref serializer::start_stream
693694
*/
694-
class serializer::stream
695+
class BOOST_HTTP_PROTO_DECL serializer::stream
695696
{
696697
public:
697698
/** The type used to represent a sequence

0 commit comments

Comments
 (0)