git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13124 a95241bf-73f2-0310-859d-f6bbb57e9c96
36 lines
665 B
C++
36 lines
665 B
C++
//****************************************************************************************
|
|
//
|
|
// File: PulseApp.h
|
|
//
|
|
// Written by: Daniel Switkin
|
|
//
|
|
// Copyright 1999, Be Incorporated
|
|
//
|
|
//****************************************************************************************
|
|
|
|
#ifndef PULSEAPP_H
|
|
#define PULSEAPP_H
|
|
|
|
|
|
#include <app/Application.h>
|
|
#include "Prefs.h"
|
|
|
|
|
|
class PulseApp : public BApplication {
|
|
public:
|
|
PulseApp(int argc, char **argv);
|
|
~PulseApp();
|
|
|
|
Prefs *prefs;
|
|
|
|
private:
|
|
void BuildPulse();
|
|
};
|
|
|
|
extern bool LastEnabledCPU(int cpu);
|
|
extern int GetMinimumViewWidth();
|
|
extern bool LoadInDeskbar();
|
|
extern void Usage();
|
|
|
|
#endif // PULSEAPP_H
|