xref: /haiku/src/apps/diskusage/DiskUsage.cpp (revision a5a3b2d9a3d95cbae71eaf371708c73a1780ac0d)
1 /*
2  * Copyright (c) 1998-2007 Matthijs Hollemans
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "App.h"
8 
9 #include <TrackerAddOnAppLaunch.h>
10 
11 #include <stdio.h>
12 
13 #include <Catalog.h>
14 
15 #include "DiskUsage.h"
16 
17 #undef B_TRANSLATION_CONTEXT
18 #define B_TRANSLATION_CONTEXT "DiskUsage"
19 
20 entry_ref helpFileRef;
21 bool helpFileWasFound = false;
22 
23 int
24 main()
25 {
26 	App app;
27 	app.Run();
28 	return 0;
29 }
30 
31