xref: /haiku/src/apps/people/main.cpp (revision bb5f99a5a6ba465d3eb9cd70b1d7cc1ab505496e)
1faef1e54Sshatty /*
2*bb5f99a5SStephan Aßmus  * Copyright 1999, Be Incorporated. All Rights Reserved.
3*bb5f99a5SStephan Aßmus  * This file may be used under the terms of the Be Sample Code License.
4*bb5f99a5SStephan Aßmus  *
5*bb5f99a5SStephan Aßmus  *	Authors:
6*bb5f99a5SStephan Aßmus  *		Robert Polic
7faef1e54Sshatty  */
8faef1e54Sshatty 
9*bb5f99a5SStephan Aßmus 
10faef1e54Sshatty #include "PeopleApp.h"
11faef1e54Sshatty 
12*bb5f99a5SStephan Aßmus 
13*bb5f99a5SStephan Aßmus int
main(int,char **)14*bb5f99a5SStephan Aßmus main(int, char**)
15faef1e54Sshatty {
16*bb5f99a5SStephan Aßmus 	TPeopleApp app;
17*bb5f99a5SStephan Aßmus 	app.Run();
18faef1e54Sshatty 	return B_NO_ERROR;
19faef1e54Sshatty }
20