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