query/include/matador/object/dictionary.hpp

15 lines
179 B
C++

#ifndef DICTIONARY_HPP
#define DICTIONARY_HPP
namespace matador::object {
template < class Key, class Value >
class dictionary {
public:
private:
};
}
#endif //DICTIONARY_HPP