mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
30 lines
368 B
C++
30 lines
368 B
C++
/*++
|
|
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<typename T>
|
|
class dictionary : public map<symbol, T, symbol_hash_proc, symbol_eq_proc> {
|
|
public:
|
|
dictionary() {}
|
|
};
|
|
|
|
#endif
|