Files
2026-05-23 11:01:52 +01:00

16 lines
277 B
C++

#include "alfe/main.h"
#ifndef INCLUDED_UNCOPYABLE_H
#define INCLUDED_UNCOPYABLE_H
class Uncopyable
{
public:
Uncopyable() { }
private:
Uncopyable(const Uncopyable& other);
const Uncopyable& operator=(const Uncopyable& other);
};
#endif // INCLUDED_UNCOPYABLE_H