ETrobocon2017 - 片山研究所モデルベース開発推進事業部
str
ev3-api
library
libcpp-test
include
libcpp-test.h
[詳解]
1
#pragma once
2
3
#ifdef __cplusplus
4
extern
"C"
{
5
#endif
6
7
extern
void
libcpp_test_c_echo_function
(
int
val);
8
9
extern
void
libcpp_test_cpp_echo_function
(
int
val);
10
11
#ifdef __cplusplus
12
}
13
#endif
14
15
#ifdef __cplusplus
16
class
LibSampleClass {
17
public
:
18
LibSampleClass();
19
20
void
draw();
21
private
:
22
int
member;
23
};
24
#endif
libcpp_test_c_echo_function
void libcpp_test_c_echo_function(int val)
Definition:
c-souce-file-1.c:3
libcpp_test_cpp_echo_function
void libcpp_test_cpp_echo_function(int val)
Definition:
cpp-souce-file-1.cpp:15
構築:
1.8.13