diff options
Diffstat (limited to 'Example/Hello/hello.h')
-rw-r--r-- | Example/Hello/hello.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Example/Hello/hello.h b/Example/Hello/hello.h new file mode 100644 index 0000000..b17d683 --- /dev/null +++ b/Example/Hello/hello.h @@ -0,0 +1,11 @@ +#ifndef _hello_h +#define _hello_h + + +class Hello +{ +public: + void Print(); +}; + +#endif |