Modules/Containers/public/ContainersCommon.hpp
2023-06-29 19:20:58 +03:00

26 lines
No EOL
452 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&) {}
};
}