]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/rtti.h
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / rtti.h
CommitLineData
58da2eb2
DC
1/* Code to go along with tests in rtti.exp.
2
213516ef 3 Copyright 2003-2023 Free Software Foundation, Inc.
58da2eb2
DC
4
5 Contributed by David Carlton <carlton@bactrian.org> and by Kealia,
6 Inc.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7
JB
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
58da2eb2 14
a9762ec7
JB
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
58da2eb2
DC
19
20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
58da2eb2
DC
22
23namespace n2 {
24
25 class C2;
26
27 class Base2 {
28 public:
29 virtual ~Base2() { }
30 };
31
32
33 class C2: public Base2 {
34 public:
35 };
36
37 class D2 : public C2{
38 public:
39 D2(C2 *, C2 *);
40
41 C2* expr_1_;
42 C2* expr_2_;
43 };
44
45 extern C2 *create2();
1198ecbe
DC
46
47 namespace n3 {
48 class C3 : public C2 {
49 public:
50 };
51 }
52
53 extern n3::C3 *create3();
58da2eb2 54}