Sign in
ara-mdk
/
platform
/
ndk
/
f4f10df3fdd08ef9f466d9b54953c1ba3e64827b
/
.
/
tests
/
device
/
test-cxx-init-array
/
jni
/
global_ctor.h
blob: 19f997aff0c257180d21bae2e6d74a948bee1240 [
file
] [
log
] [
blame
]
#ifndef
GLOBAL_CTOR_H
#define
GLOBAL_CTOR_H
class
GlobalCtor
{
private
:
int
Value
;
public
:
GlobalCtor
();
bool
IsInitialized
()
const
{
return
(
Value
==
42
);
}
};
#endif
// GLOBAL_CTOR_H