2440d2c1cf
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2091 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
341 B
C++
17 lines
341 B
C++
/*
|
|
* AboutBox.h
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __ABOUTBOX_H
|
|
#define __ABOUTBOX_H
|
|
|
|
#include <Application.h>
|
|
|
|
class AboutBox : public BApplication {
|
|
public:
|
|
AboutBox(const char *signature, const char *driver_name, const char *version, const char *copyright);
|
|
};
|
|
|
|
#endif /* __ABOUTBOX_H */
|