view ProtectedContainer.hpp @ 0:a3834af36579

Working with memory backend.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Mon, 20 Aug 2012 15:49:48 +0200
parents
children
line wrap: on
line source

#ifndef PROTECTEDCONTAINER_HPP
#define PROTECTEDCONTAINER_HPP

#include <QtCore/QMap>

template <typename Key_t, typename Value_t>
class ProtectedDictionary {

  QMap<Key_t, Value_t> map;
};

#endif //PROTECTEDCONTAINER_HPP