xref: /haiku/src/apps/people/main.cpp (revision faef1e541324d87f985923d48436a208edb2ff55)
1*faef1e54Sshatty //--------------------------------------------------------------------
2*faef1e54Sshatty //
3*faef1e54Sshatty //	main.cpp
4*faef1e54Sshatty //
5*faef1e54Sshatty //	Written by: Robert Polic
6*faef1e54Sshatty //
7*faef1e54Sshatty //--------------------------------------------------------------------
8*faef1e54Sshatty /*
9*faef1e54Sshatty 	Copyright 1999, Be Incorporated.   All Rights Reserved.
10*faef1e54Sshatty 	This file may be used under the terms of the Be Sample Code License.
11*faef1e54Sshatty */
12*faef1e54Sshatty 
13*faef1e54Sshatty #include "PeopleApp.h"
14*faef1e54Sshatty 
15*faef1e54Sshatty int main(void)
16*faef1e54Sshatty {
17*faef1e54Sshatty 	TPeopleApp	*app;
18*faef1e54Sshatty 
19*faef1e54Sshatty 	app = new TPeopleApp();
20*faef1e54Sshatty 	app->Run();
21*faef1e54Sshatty 
22*faef1e54Sshatty 	delete app;
23*faef1e54Sshatty 	return B_NO_ERROR;
24*faef1e54Sshatty }
25