MaxstARSDK
3.5.0
Main Page
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
c
d
e
f
g
i
l
o
q
r
s
t
u
w
+
Functions
a
c
d
e
f
g
i
l
o
q
r
s
u
w
Variables
+
Files
File List
•
All
Classes
Functions
Variables
com
maxst
ar
SensorDevice.java
1
/*
2
* Copyright 2016 Maxst, Inc. All Rights Reserved.
3
*/
4
package
com.maxst.ar;
5
9
public
class
SensorDevice
{
10
11
private
static
SensorDevice
instance = null;
12
13
public
static
SensorDevice
getInstance() {
14
if
(instance == null) {
15
instance =
new
SensorDevice
();
16
}
17
18
return
instance;
19
}
20
21
private
SensorDevice
() {}
22
26
public
void
start
() {
27
MaxstARJNI
.startSensor();
28
}
29
33
public
void
stop
() {
34
MaxstARJNI
.stopSensor();
35
}
36
}
com.maxst.ar.MaxstARJNI
Definition:
MaxstARJNI.java:8
com.maxst.ar.SensorDevice.start
void start()
Definition:
SensorDevice.java:26
com.maxst.ar.SensorDevice
Definition:
SensorDevice.java:9
com.maxst.ar.SensorDevice.stop
void stop()
Definition:
SensorDevice.java:33
Generated by
1.8.14