mm: core: add iterator class

This commit is contained in:
2026-03-15 14:42:31 +00:00
parent 146db5f6ef
commit d599eb539a
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef BLUE_CORE_ITERATOR_HPP_
#define BLUE_CORE_ITERATOR_HPP_
#include <blue/core/object.hpp>
namespace blue::core
{
class iterator : public object
{
};
}
#endif

1
core-mm/iterator.cpp Normal file
View File

@@ -0,0 +1 @@
#include <blue/core/iterator.hpp>