20 lines
299 B
C
20 lines
299 B
C
|
#ifndef __BA8500_H
|
||
|
#define __BA8500_H
|
||
|
|
||
|
#ifndef __APPLICAT_H
|
||
|
#include <applicat.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __REPORT_H
|
||
|
#include <report.h>
|
||
|
#endif
|
||
|
|
||
|
class TKlarkKent_app : public TSkeleton_application
|
||
|
{
|
||
|
protected:
|
||
|
virtual TReport* create_report(const char* name) const;
|
||
|
virtual void main_loop();
|
||
|
};
|
||
|
|
||
|
#endif
|