// This file is part of OpenCV project.// It is subject to the license terms in the LICENSE file found in the top-level directory// of this distribution and at http://opencv.org/license.html.//// Copyright (C) 2014, Advanced Micro Devices, Inc., all rights reserved.#ifndef OPENCV_CORE_BUFFER_POOL_HPP#define OPENCV_CORE_BUFFER_POOL_HPPnamespacecv{//! @addtogroup core//! @{classBufferPoolController{protected:~BufferPoolController(){}public:virtualsize_tgetReservedSize()const=0;virtualsize_tgetMaxReservedSize()const=0;virtualvoidsetMaxReservedSize(size_tsize)=0;virtualvoidfreeAllReservedBuffers()=0;};//! @}}#endif // OPENCV_CORE_BUFFER_POOL_HPP