diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-17 11:18:19 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-17 11:18:19 +0100 |
commit | 4f9078c0f06e0cf0cb7bb164fc72fb9918c68e6a (patch) | |
tree | 34815307b54bf8639ba89f2efddf03e96ee4c0d0 /Source/Applications/Demos | |
parent | 3d5aca66b9712758aecb2e80bc5b2fb3df6256a4 (diff) | |
download | Melon-4f9078c0f06e0cf0cb7bb164fc72fb9918c68e6a.tar.gz Melon-4f9078c0f06e0cf0cb7bb164fc72fb9918c68e6a.zip |
Added some option handling featurs to the default ShellApp class
Diffstat (limited to 'Source/Applications/Demos')
-rw-r--r-- | Source/Applications/Demos/GOL.cpp | 2 | ||||
-rw-r--r-- | Source/Applications/Demos/cxxdemo.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Applications/Demos/GOL.cpp b/Source/Applications/Demos/GOL.cpp index cd6e719..675c159 100644 --- a/Source/Applications/Demos/GOL.cpp +++ b/Source/Applications/Demos/GOL.cpp @@ -6,7 +6,7 @@ class GOL : public ShellApp { public: - GOL() : ShellApp() {} + GOL() : ShellApp("GOL.app", "Melon's Game of Life simulator \\o/") {} int run(); }; diff --git a/Source/Applications/Demos/cxxdemo.cpp b/Source/Applications/Demos/cxxdemo.cpp index 372e69f..36cfd27 100644 --- a/Source/Applications/Demos/cxxdemo.cpp +++ b/Source/Applications/Demos/cxxdemo.cpp @@ -6,7 +6,7 @@ class CPPDemo : public ShellApp { public: - CPPDemo() : ShellApp() {} + CPPDemo() : ShellApp("CPPDemo.app", "A demo application using the C++ Melon framework") {} int run(); }; |