mirror of
https://github.com/dbalsom/x86_microcode.git
synced 2026-06-09 13:04:17 +03:00
16 lines
277 B
C++
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
|