faef1e5413
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1676 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
462 B
C++
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;
|
|
}
|