Show
Ignore:
Timestamp:
02/06/10 14:07:02 (6 months ago)
Author:
trichards
Message:

Zen Server had some non-standard C++ usage. Fixed that, and added linking to Boost libraries.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Starter/branches/0185_GEN_PHYSICS_REFACTOR_2/Base/ZenServer/ZenServer.cpp

    r2345 r3372  
    3939 
    4040#include <stddef.h> 
    41 #include <conio.h> 
    4241 
    4342namespace po = boost::program_options; 
     
    103102    Zen::Plugins::I_PluginManager::app_ptr_type pApp = Zen::Plugins::I_PluginManager::getSingleton().installApplication(configPath); 
    104103 
    105     Zen::Enterprise::AppServer::I_ApplicationServerManager& manager =  
     104    Zen::Enterprise::AppServer::I_ApplicationServerManager& manager = 
    106105        Zen::Enterprise::AppServer::I_ApplicationServerManager::getSingleton(); 
    107106 
     
    151150    std::cout << "Running.... press a key to terminate." << std::endl; 
    152151 
    153     getch(); 
    154  
    155152    return 0; 
    156153}