root/src/apps/poorman/PoorMan.cpp
/* PoorMan.cpp
 *
 *      Philip Harrison
 *      Started: 4/25/2004
 *      Version: 0.1
 */
//#include <stdio.h>

#include "PoorManApplication.h"

int 
main()
{
        PoorManApplication webServer;
        webServer.Run();
        
        //printf("webServer: %p", &webServer);
        //printf("be_app: %p", be_app);
        
        return 0;
}