// Copyright 2022 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CORE_FXCRT_DATA_VECTOR_H_ #define CORE_FXCRT_DATA_VECTOR_H_ #include #include "core/fxcrt/fx_memory_wrappers.h" namespace fxcrt { template using DataVector = std::vector>; } // namespace fxcrt using fxcrt::DataVector; #endif // CORE_FXCRT_DATA_VECTOR_H_