#ifndef GrBufferAllocPool_DEFINED
#define GrBufferAllocPool_DEFINED
#include "include/core/SkRefCnt.h"
#include "include/core/SkTypes.h"
#include "include/private/base/SkNoncopyable.h"
#include "include/private/base/SkTArray.h"
#include "include/private/base/SkTypeTraits.h"
#include "include/private/gpu/ganesh/GrTypesPriv.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrCpuBuffer.h"
#include "src/gpu/ganesh/GrDrawIndirectCommand.h"
#include "src/gpu/ganesh/GrNonAtomicRef.h"
#include <cstddef>
#include <memory>
#include <type_traits>
#include <utility>
class GrGpu;
class GrBufferAllocPool : SkNoncopyable { … };
class GrVertexBufferAllocPool : public GrBufferAllocPool { … };
class GrIndexBufferAllocPool : public GrBufferAllocPool { … };
class GrDrawIndirectBufferAllocPool : private GrBufferAllocPool { … };
#endif