1/*
2 * AboutBox.h
3 * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
4 */
5
6#ifndef __ABOUTBOX_H
7#define __ABOUTBOX_H
8
9#include <Application.h>
10
11class AboutBox : public BApplication {
12public:
13	AboutBox(const char *signature, const char *driver_name, const char *version, const char *copyright);
14};
15
16#endif	/* __ABOUTBOX_H */
17