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