~thomas-voss/biometryd/remove-obsolete-configuration-header

« back to all changes in this revision

Viewing changes to include/biometry/do_not_copy_or_move.h

  • Committer: Thomas Voß
  • Date: 2016-05-02 06:16:01 UTC
  • Revision ID: thomas.voss@canonical.com-20160502061601-vqzwfw4c0rxfna04
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef BIOMETRY_DO_NOT_COPY_OR_MOVE_H_
 
21
#define BIOMETRY_DO_NOT_COPY_OR_MOVE_H_
 
22
 
 
23
namespace biometry
 
24
{
 
25
/// @cond
 
26
class DoNotCopyOrMove
 
27
{
 
28
public:
 
29
    DoNotCopyOrMove(const DoNotCopyOrMove&) = delete;
 
30
    DoNotCopyOrMove(DoNotCopyOrMove&&) = delete;
 
31
    virtual ~DoNotCopyOrMove() = default;
 
32
    DoNotCopyOrMove& operator=(const DoNotCopyOrMove&) = delete;
 
33
    DoNotCopyOrMove& operator=(DoNotCopyOrMove&&) = delete;
 
34
 
 
35
protected:
 
36
    DoNotCopyOrMove() = default;
 
37
};
 
38
/// @endcond
 
39
}
 
40
 
 
41
#endif // BIOMETRY_DO_NOT_COPY_OR_MOVE_H_