BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / drivesetup / DriveSetup.h
blob0d252383bb4be59775adc88179ac5efcef854318
1 /*
2 * Copyright 2002-2007 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT license.
4 */
5 #ifndef DRIVE_SETUP_H
6 #define DRIVE_SETUP_H
9 #include <Application.h>
10 #include <Catalog.h>
11 #include <Message.h>
14 class BFile;
15 class MainWindow;
18 class DriveSetup : public BApplication {
19 public:
20 DriveSetup();
21 virtual ~DriveSetup();
23 virtual void ReadyToRun();
24 virtual bool QuitRequested();
26 private:
27 status_t _StoreSettings();
28 status_t _RestoreSettings();
29 status_t _GetSettingsFile(BFile& file,
30 bool forWriting) const;
32 MainWindow* fWindow;
34 BMessage fSettings;
38 #endif // DRIVE_SETUP_H