QUICHE team | fd50a40 | 2018-12-07 22:54:05 -0500 | [diff] [blame^] | 1 | // Copyright 2017 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 QUICHE_HTTP2_PLATFORM_API_HTTP2_RECONSTRUCT_OBJECT_H_ |
| 6 | #define QUICHE_HTTP2_PLATFORM_API_HTTP2_RECONSTRUCT_OBJECT_H_ |
| 7 | |
| 8 | #include <utility> |
| 9 | |
| 10 | #include "net/http2/platform/impl/http2_reconstruct_object_impl.h" |
| 11 | |
| 12 | namespace http2 { |
| 13 | namespace test { |
| 14 | |
| 15 | class Http2Random; |
| 16 | |
| 17 | // Reconstruct an object so that it is initialized as when it was first |
| 18 | // constructed. Runs the destructor to handle objects that might own resources, |
| 19 | // and runs the constructor with the provided arguments, if any. |
| 20 | template <class T, class... Args> |
| 21 | void Http2ReconstructObject(T* ptr, Http2Random* rng, Args&&... args) { |
| 22 | Http2ReconstructObjectImpl(ptr, rng, std::forward<Args>(args)...); |
| 23 | } |
| 24 | |
| 25 | // This version applies default-initialization to the object. |
| 26 | template <class T> |
| 27 | void Http2DefaultReconstructObject(T* ptr, Http2Random* rng) { |
| 28 | Http2DefaultReconstructObjectImpl(ptr, rng); |
| 29 | } |
| 30 | |
| 31 | } // namespace test |
| 32 | } // namespace http2 |
| 33 | |
| 34 | #endif // QUICHE_HTTP2_PLATFORM_API_HTTP2_RECONSTRUCT_OBJECT_H_ |