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