From b2a409507e761c0a588b85369a9c91b7df6abfd5 Mon Sep 17 00:00:00 2001 From: Ryan Leavengood Date: Wed, 13 Jun 2007 02:36:18 +0000 Subject: [PATCH] Adding the header. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21403 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/shared/AboutWindow.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 headers/private/shared/AboutWindow.h diff --git a/headers/private/shared/AboutWindow.h b/headers/private/shared/AboutWindow.h new file mode 100644 index 0000000000..57cf972db8 --- /dev/null +++ b/headers/private/shared/AboutWindow.h @@ -0,0 +1,28 @@ +/* + * Copyright 2007 Haiku, Inc. + * Distributed under the terms of the MIT License. + * + * Authors: + * Ryan Leavengood, leavengood@gmail.com + */ +#ifndef B_ABOUT_WINDOW_H +#define B_ABOUT_WINDOW_H + + +#include + + +class BAboutWindow { + public: + BAboutWindow(char *appName, int32 firstCopyrightYear, + const char **authors, char *extraInfo = NULL); + virtual ~BAboutWindow(); + + void Show(); + + private: + BString* fAppName; + BString* fText; +}; + +#endif // B_ABOUT_WINDOW_H