// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef QUICHE_COMMON_QUICHE_SIMPLE_ARENA_H_ #define QUICHE_COMMON_QUICHE_SIMPLE_ARENA_H_ #include <memory> #include <vector> #include "quiche/common/platform/api/quiche_export.h" namespace quiche { // Allocates large blocks of memory, and doles them out in smaller chunks. // Not thread-safe. class QUICHE_EXPORT QuicheSimpleArena { … }; } // namespace quiche #endif // QUICHE_COMMON_QUICHE_SIMPLE_ARENA_H_