Chat-O-Matic/application/AboutWindow.h

25 lines
522 B
C
Raw Normal View History

2010-05-12 13:57:19 -05:00
/*
* Copyright 2010, Pier Luigi Fiorini. All rights reserved.
* Copyright 2007-2009, Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _ABOUT_WINDOW_H
#define _ABOUT_WINDOW_H
#include <String.h>
class AboutWindow {
public:
AboutWindow(const char* appName, const char** holders,
2010-05-19 17:28:26 -05:00
const char** authors, const char* extraInfo = NULL);
2010-05-12 13:57:19 -05:00
virtual ~AboutWindow();
void Show();
private:
BString* fAppName;
BString* fText;
};
#endif // _ABOUT_WINDOW_H