OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_SERIALIZATION_FORWARD_H_ | |
6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_SERIALIZATION_FORWARD_H_ | |
7 | |
8 // Headers such as array_serialization.h can include this file to avoid circular | |
viettrungluu
2015/09/23 23:20:24
Nit: I'd move this above the include guard (#ifnde
vardhan
2015/09/25 19:33:05
Done.
| |
9 // dependencies on map_serialization.h. | |
10 | |
11 namespace mojo { | |
12 namespace internal { | |
13 | |
14 class ArrayValidateParams; | |
15 class Buffer; | |
16 | |
17 template <typename Key, typename Value> | |
18 class Map_Data; | |
19 | |
20 } // namespace internal | |
21 | |
22 template <typename Key, typename Value> | |
23 class Map; | |
24 | |
25 template <typename MapKey, | |
26 typename MapValue, | |
27 typename DataKey, | |
28 typename DataValue> | |
29 void SerializeMap_(Map<MapKey, MapValue>* input, | |
30 internal::Buffer* buf, | |
31 internal::Map_Data<DataKey, DataValue>** output, | |
32 const internal::ArrayValidateParams* value_validate_params); | |
33 template <typename MapKey, typename MapValue> | |
34 size_t GetSerializedSize_(const Map<MapKey, MapValue>& input); | |
35 | |
36 template <typename MapKey, | |
37 typename MapValue, | |
38 typename DataKey, | |
39 typename DataValue> | |
40 void Deserialize_(internal::Map_Data<DataKey, DataValue>* input, | |
41 Map<MapKey, MapValue>* output); | |
42 | |
43 } // namespace mojo | |
44 | |
45 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_SERIALIZATION_FORWARD_H_ | |
OLD | NEW |