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
21int
22main()
23{
24	App app;
25	app.Run();
26	return 0;
27}
28
29