xref: /haiku/src/apps/people/main.cpp (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
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