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