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
/
objdbg04
/
x1.cc
blob
1f284b2ab0e9a139ebffeef687dbefbe7b7c5d65
1
#include <stdio.h>
2
#include
"x.h"
3
4
template class
Adder
<
int
>;
5
6
int
main
()
7
{
8
Adder
<
int
>
add
;
9
10
add
.
set
(
3
);
11
add
.
add
(
3
);
12
printf
(
"In main: %d
\n
"
,
add
.
get
());
13
14
return
0
;
15
}