6 namespace Interop {
template <
class AType>
class STLAllocator; };
10 template <
typename AType>
using Deque = std::deque<AType, Interop::STLAllocator<AType>>;
12 template <
typename AType>
using Vector = std::vector<AType, Interop::STLAllocator<AType>>;
14 template <
typename AType,
typename AContainer = Deque<AType>>
using Stack = std::stack<AType, AContainer>;
std::vector< AType, Interop::STLAllocator< AType >> Vector
std::vector algorithms using the CyberEngine's allocator
std::stack< AType, AContainer > Stack
std::stack algorithms using the CyberEngine's allocator
std::deque< AType, Interop::STLAllocator< AType >> Deque
std::deque algorithms using the CyberEngine's allocator