Newer
Older
Import / research / signals-slots / src / core / dict.h
@John Ryland John Ryland on 22 Dec 2020 270 bytes import NUC files
#ifndef DICT_H
#define DICT_H


#include <iterable.h>


template<typename T>
class Dict : public Iterable<T>
{
public:
    Dict();
    virtual ~Dict();
    void append(const char *key, T item);
protected:
    char **keys;
};


#include <dict_impl.h>


#endif // DICT_H