started with object proxy

This commit is contained in:
Sascha Kühl
2025-02-20 18:20:23 +01:00
parent dfb0d7c56a
commit 0eb1ae9fe8
4 changed files with 59 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef DICTIONARY_HPP
#define DICTIONARY_HPP
namespace matador::object {
template < class Key, class Value >
class dictionary {
public:
private:
};
}
#endif //DICTIONARY_HPP