Modules/Containers/public/ContainersCommon.hpp
2023-10-22 20:23:29 +03:00

26 lines
No EOL
430 B
C++

#pragma once
#include "Module.hpp"
namespace tp {
extern ModuleManifest gModuleContainers;
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&) {}
};
}