Bond
 
Loading...
Searching...
No Matches
nonassignable.h
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#pragma once
5
6#include <bond/core/config.h>
7
8namespace bond
9{
10namespace detail
11{
12 class nonassignable
13 {
14 protected:
15 nonassignable() {}
16 ~nonassignable() {}
17 private:
18 nonassignable& operator=(const nonassignable&);
19 };
20}
21}
namespace bond
Definition: apply.h:17