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