Sign in
ara-mdk
/
platform
/
ndk
/
bb979c93fc536a7c8fd9e339c5545ae3faa478d5
/
.
/
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