diff options
author | Matt Turner <mattst88@gmail.com> | 2007-12-20 00:39:33 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2007-12-20 00:39:33 +0000 |
commit | 7f01dceac3c6f5be7c6745baf14c4b0d092aa31f (patch) | |
tree | a8bc8c92fd3c9d61a17e2afaf8e8bdab4f210a66 /Calculator.h |
Create branch to allow shortcuts for buttons. Partial rewrite :(CalculatorButton
git-svn-id: svn://mattst88.com/svn/calculator/branches/CalculatorButton@9 40705d3a-cdd4-446d-8ced-669f9f7342eb
Diffstat (limited to 'Calculator.h')
-rwxr-xr-x | Calculator.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Calculator.h b/Calculator.h new file mode 100755 index 0000000..596ec1c --- /dev/null +++ b/Calculator.h @@ -0,0 +1,10 @@ +#include <gui/ApplicationWindow.h> +#include <gui/Application.h> + +using namespace SkyGI; + +class Calculator : public Application { + public: + Calculator(int argc, char *argv[]); +}; + |