add initial folder structure and the first basic examples

This commit is contained in:
ttroy50
2015-11-21 18:51:01 +00:00
parent 6c3c4c8d1d
commit 337cdeaa94
23 changed files with 467 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#ifndef __HELLO_H__
#define __HELLO_H__
class Hello
{
public:
void print();
};
#endif