/*++ Copyright (c) 2011 Microsoft Corporation Module Name: dictionary.h Abstract: Author: Leonardo (leonardo) 2011-03-01 Notes: --*/ #pragma once #include "util/map.h" #include "util/symbol.h" template class dictionary : public map { public: dictionary() {} };