-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc2python_swig.h
More file actions
44 lines (33 loc) · 732 Bytes
/
c2python_swig.h
File metadata and controls
44 lines (33 loc) · 732 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
36
37
38
39
40
41
42
43
/*
* =========================================================================
*
* FileName: c2python_swig.h
*
* Description:
*
* Version: 1.0
* Created: 2018-02-27 10:12:18
* Last Modified: 2018-02-27 10:12:37
* Revision: none
* Compiler: gcc
*
* Author: zt ()
* Organization:
*
* =========================================================================
*/
#ifndef C2PYTHON_SWIG_INC
#define C2PYTHON_SWIG_INC
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string>
class c2python_swig
{
public:
c2python_swig();
virtual ~c2python_swig();
void test ( std::string a );
private:
};
#endif /* C2PYTHON_SWIG_INC */