/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: auList.hpp Date: 2022-2-1 Author: Reece ***/ #pragma once #if !defined(AURORA_RUNTIME_AU_LIST) #define AURORA_RUNTIME_AU_LIST std::vector #endif #include "auMemoryModel.hpp" #if defined(AURORA_ROXTL_CONTAINERS_USE_PURE) template , Aurora::Memory::ClassArrayAllocator, Aurora::Memory::PrimitiveArrayAllocator>> using AuList = AURORA_RUNTIME_AU_LIST; #else template , Aurora::Memory::ClassArrayAllocator, Aurora::Memory::PrimitiveArrayAllocator>> using AuList = AURORA_RUNTIME_AU_LIST; #endif template using AuListOfHeap = AuList>;