1//****************************************************************************************
2//
3//	File:		PulseApp.h
4//
5//	Written by:	Daniel Switkin
6//
7//	Copyright 1999, Be Incorporated
8//
9//****************************************************************************************
10
11#ifndef PULSEAPP_H
12#define PULSEAPP_H
13
14
15#include <Application.h>
16#include <Catalog.h>
17
18#include "Prefs.h"
19
20
21class PulseApp : public BApplication {
22public:
23						PulseApp(int argc, char **argv);
24						~PulseApp();
25
26	virtual	void		AboutRequested();
27	static	void		ShowAbout(bool asApplication);
28
29			Prefs*		prefs;
30
31private:
32			void		BuildPulse();
33};
34
35extern bool LastEnabledCPU(int cpu);
36extern int GetMinimumViewWidth();
37extern bool LoadInDeskbar();
38extern void Usage();
39
40#endif	// PULSEAPP_H
41