Modules/Containers/public/ContainersCommon.hpp
2024-11-24 22:41:13 +03:00

25 lines
No EOL
388 B
C++

#pragma once
#include "Module.hpp"
namespace tp {
class DefaultAllocator {
public:
DefaultAllocator() = default;
static void* allocate(ualni);
static void deallocate(void*);
};
class DefaultSaverLoader {
public:
DefaultSaverLoader() = default;
template <typename Type>
static void write(const Type&) {}
template <typename Type>
static void read(Type&) {}
};
}