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