About
Contact
QtCreator
KDevelop
Solarized
1
#include
"lib.h"
2
3
template
<
typename
T>
struct
FooImpl
{
4
using
Ref
=
FooImpl
<T> *;
5
6
Ref
Create
() {
return
new
FooImpl
<T>(); }
7
};
8
9
FooImpl
<
char
>
gLibLocalDef
;
10
BarImpl
<
char
> *
gLibExternalDef
=
nullptr
;
11