blob: ddcb312157e26e40a55e1a1f2c5ad08fc8d6c907 [file] [log] [blame]
QUICHE teamfd50a402018-12-07 22:54:05 -05001// 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
12namespace http2 {
13namespace test {
14
15class 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.
20template <class T, class... Args>
21void 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.
26template <class T>
27void 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_