diff options
Diffstat (limited to '')
| -rw-r--r-- | aisa/aisa.cpp | 12 | ||||
| -rw-r--r-- | aisa/aisa.h | 7 |
2 files changed, 19 insertions, 0 deletions
diff --git a/aisa/aisa.cpp b/aisa/aisa.cpp new file mode 100644 index 0000000..0c806de --- /dev/null +++ b/aisa/aisa.cpp | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #include <iostream> | ||
| 2 | |||
| 3 | #include "aisa/aisa.h" | ||
| 4 | |||
| 5 | namespace aisa { | ||
| 6 | |||
| 7 | void do_something() | ||
| 8 | { | ||
| 9 | std::cout << "Hello, world!\n"; | ||
| 10 | } | ||
| 11 | |||
| 12 | } | ||
diff --git a/aisa/aisa.h b/aisa/aisa.h new file mode 100644 index 0000000..b570d6b --- /dev/null +++ b/aisa/aisa.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | namespace aisa { | ||
| 4 | |||
| 5 | void do_something(); | ||
| 6 | |||
| 7 | } | ||
