blob: 27df81b3a81c5f6e16131af260aee3b6af30d01b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
/**
* @brief header file of sample navigation application
*
* @date Apr-25-2013
*/
#ifndef SAMPLENAVI_H_
#define SAMPLENAVI_H_
/* enum */
enum ConfDataID
{
USB_CAMERA_ID,
LANDMARK_POSITION,
LANDMARK_ROTATION,
CONF_DATA_MAX
};
extern int conf_data[CONF_DATA_MAX];
#endif /* SAMPLENAVI_H_ */
|