tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / notifications / Notifications.cpp
blob208e72a7df5774f380ce7027c3943e57fcd5250d
1 /*
2 * Copyright 2010, Haiku, Inc. All Rights Reserved.
3 * Copyright 2009, Pier Luigi Fiorini.
4 * Distributed under the terms of the MIT License.
6 * Authors:
7 * Pier Luigi Fiorini, pierluigi.fiorini@gmail.com
8 */
10 #include <Application.h>
12 #include "PrefletWin.h"
14 class PrefletApp : public BApplication {
15 public:
16 PrefletApp();
18 virtual void ReadyToRun();
19 virtual bool QuitRequested();
21 private:
22 PrefletWin* fWindow;
26 PrefletApp::PrefletApp()
28 BApplication("application/x-vnd.Haiku-Notifications")
33 void
34 PrefletApp::ReadyToRun()
36 fWindow = new PrefletWin;
40 bool
41 PrefletApp::QuitRequested()
43 return true;
47 int
48 main(int argc, char* argv[])
50 PrefletApp app;
51 app.Run();
52 return 0;