view ProtectedDictionary.hpp @ 5:5e4985407feb

Add commandline tool updateDeDupe. Fix removal of removed files from DB.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Wed, 22 Aug 2012 00:41:15 +0200
parents a3834af36579
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