/* * fb_vector.h * firebird_test * * Created by john on Fri Dec 14 2001. * Copyright (c) 2001 __MyCompanyName__. All rights reserved. * */ #ifndef FB_MAP_H #define FB_MAP_H #include "../common/memory/allocators.h" #include namespace Firebird { template class map : public std::map, Firebird::allocator > > { }; }; #endif // FB_MAP_H