Sign in
android
/
platform
/
external
/
google-fruit
/
c8d7066c32ffa62ff243e107c0ca596abfaf7f56
/
.
/
test_package
/
example.cpp
blob: 14658b5ea55f220925a75a7c10049575e27fa92a [
file
] [
log
] [
blame
]
#include
<fruit/fruit.h>
struct
X
{
INJECT
(
X
())
=
default
;
};
fruit
::
Component
<
X
>
getXComponent
()
{
return
fruit
::
createComponent
();
}
int
main
()
{
fruit
::
Injector
<
X
>
injector
(
getXComponent
);
injector
.
get
<
X
*>();
}