xref: /haiku/src/apps/pulse/PulseApp.h (revision 51978af14a173e7fae0563b562be5603bc652aeb)
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 #include <app/Application.h>
15 #include "Prefs.h"
16 
17 bool LastEnabledCPU(int my_cpu);
18 int GetMinimumViewWidth();
19 bool LoadInDeskbar();
20 void Usage();
21 
22 class PulseApp : public BApplication {
23 	public:
24 		PulseApp(int argc, char **argv);
25 		~PulseApp();
26 
27 		Prefs *prefs;
28 
29 	private:
30 		void BuildPulse();
31 };
32 
33 #endif
34