16 lines
149 B
C++
16 lines
149 B
C++
#include <stdio.h>
|
|
#include <android/log.h>
|
|
|
|
class test
|
|
{
|
|
public:
|
|
test();
|
|
~test();
|
|
|
|
public:
|
|
static int initCount;
|
|
static int initCount2;
|
|
};
|
|
|
|
|