repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gdb6
/
gdb
/
testsuite
/
gdb.hp
/
gdb.objdbg
/
objdbg01
/
x3.h
blob
d03a5503c5e9405c5fd4cc422102b5426e7c7004
1
2
template
<
class
T
>
3
class
Info
{
4
public
:
5
void
p
(
T
*
x
);
6
};
7
8
template
<
class
T
>
9
void
Info
<
T
>::
p
(
T
*
x
)
10
{
11
x
->
print
();
12
}
13
14
class
PP
{
15
public
:
16
void
print
();
17
};
18
19
class
QQ
{
20
public
:
21
void
print
();
22
};