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 BCatalog fCatalog; 32 }; 33 34 extern bool LastEnabledCPU(int cpu); 35 extern int GetMinimumViewWidth(); 36 extern bool LoadInDeskbar(); 37 extern void Usage(); 38 39 #endif // PULSEAPP_H 40