-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc2python_swig.cpp
More file actions
36 lines (29 loc) · 614 Bytes
/
c2python_swig.cpp
File metadata and controls
36 lines (29 loc) · 614 Bytes
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
30
31
32
33
34
35
/*
* =========================================================================
*
* FileName: c2python_swig.cpp
*
* Description:
*
* Version: 1.0
* Created: 2018-02-26 13:31:15
* Last Modified: 2018-02-27 10:14:02
* Revision: none
* Compiler: gcc
*
* Author: zt ()
* Organization:
*
* =========================================================================
*/
#include "c2python_swig.h"
c2python_swig::c2python_swig()
{
}
c2python_swig::~c2python_swig()
{
}
void c2python_swig::test ( std::string a )
{
std::cout << a << std::endl;
}