// ============================================================================ // == == // == AMDiS - Adaptive multidimensional simulations == // == == // == http://www.amdis-fem.org == // == == // ============================================================================ // // Software License for AMDiS // // Copyright (c) 2010 Dresden University of Technology // All rights reserved. // Authors: Simon Vey, Thomas Witkowski et al. // // This file is part of AMDiS // // See also license.opensource.txt in the distribution. /** \file Containers.h */ #ifndef AMDIS_CONTAINERS_H #define AMDIS_CONTAINERS_H #include #include namespace AMDiS { /* template class amdis_map : public std::map { public: inline void insert(Key &key, T &v) { std::map::insert(std::pair(key, v)); } inline T& operator[](const Key& key) { return std::map::operator[](key); } }; */ } #endif