haiku/src/apps/people/main.cpp
shatty faef1e5413 from sample code
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1676 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-10-26 03:33:06 +00:00

25 lines
462 B
C++

//--------------------------------------------------------------------
//
// main.cpp
//
// Written by: Robert Polic
//
//--------------------------------------------------------------------
/*
Copyright 1999, Be Incorporated. All Rights Reserved.
This file may be used under the terms of the Be Sample Code License.
*/
#include "PeopleApp.h"
int main(void)
{
TPeopleApp *app;
app = new TPeopleApp();
app->Run();
delete app;
return B_NO_ERROR;
}