forked from RosettaCommons/binder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathT08.constructor.hpp
57 lines (46 loc) · 892 Bytes
/
T08.constructor.hpp
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
// vi: set ts=2 noet:
//
// Copyright (c) 2016 Sergey Lyskov <sergey.lyskov@jhu.edu>
//
// All rights reserved. Use of this source code is governed by a
// MIT license that can be found in the LICENSE file.
/// @file binder/test/T08.constructor.hpp
/// @brief Binder self-test file. Bindings of classes constructors.
/// @author Sergey Lyskov
#ifndef _INCLUDED_T08_constructor_hpp_
#define _INCLUDED_T08_constructor_hpp_
class BaseA
{
};
class DerivedA : public BaseA
{
};
class BaseB
{
public:
BaseB(int) {}
};
class DerivedB : public BaseB
{
};
class BaseC
{
public:
BaseC(int) {}
private:
BaseC() {}
};
class DerivedC : public BaseC
{
};
class BaseD
{
public:
BaseD() = delete;
BaseD(int) {}
};
class DerivedD : public BaseD
{
};
#endif // _INCLUDED_T08_constructor_hpp_