diff options
| author | ruki <[email protected]> | 2017-05-19 21:30:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-05-19 21:32:13 +0800 |
| commit | 03b7d8b955d11895cc15332360eca7b14d6cf58f (patch) | |
| tree | 4aa9b47aa3f1957a0a4343e7b1c4a8357e7018d5 /tests/projects/static_library_c++/src/interface.cpp | |
| parent | 58e3bad5859530c8316de4b4b7939169cdd2c492 (diff) | |
add projects and modules in tests
Diffstat (limited to 'tests/projects/static_library_c++/src/interface.cpp')
| -rwxr-xr-x | tests/projects/static_library_c++/src/interface.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/projects/static_library_c++/src/interface.cpp b/tests/projects/static_library_c++/src/interface.cpp new file mode 100755 index 000000000..598d07560 --- /dev/null +++ b/tests/projects/static_library_c++/src/interface.cpp @@ -0,0 +1,6 @@ +#include "interface.h" + +int add(int a, int b) +{ + return a + b; +} |
