aboutsummaryrefslogtreecommitdiffstats
path: root/yage/util/noncopyable.h
blob: 220bd16b85a164491825d89f98ee4df4267c6bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** ---------------------------------------------------------------------------
 * -*- c++ -*-
 * @file: noncopyable.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#pragma once

namespace yage
{

class NonCopyable
{
protected:
    NonCopyable()  = default;
    ~NonCopyable() = default;

    NonCopyable(const NonCopyable &) = delete;
    NonCopyable &operator=(const NonCopyable &) = delete;
};

} // namespace yage