Bond
 
Loading...
Searching...
No Matches
value_extern.h
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#pragma once
5
6#include <bond/core/config.h>
7#include "extern_macro.h"
8
9
10namespace bond
11{
12
13#define BOND_DETAIL_ValueVoid_Apply(Reader, Writer) \
14 void value<void, Reader&>::_Apply(const Serializer<Writer>&) const;
15
16BOND_DETAIL_EXTERN(BOND_DETAIL_ValueVoid_Apply, BOND_DETAIL_BUILTIN_READERS_WRITERS)
17
18
19} // namespace bond
namespace bond
Definition: apply.h:17