Subversion Repositories HomeAutomation

Rev

Rev 1675 | Rev 1914 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1675 Rev 1679
Line 254... Line 254...
254
    net::Manager::Create();
254
    net::Manager::Create();
255
 
255
 
256
    if (variable_map["command"].as<std::string>() == "")
256
    if (variable_map["command"].as<std::string>() == "")
257
    {
257
    {
258
        std::cout << "\033[29;1mAtom Interactive Console, version " + std::string(VERSION) + " starting...\033[0m" << std::endl;
258
        std::cout << "\033[29;1mAtom Interactive Console, version " + std::string(VERSION) + " starting...\033[0m" << std::endl;
259
        std::cout << "\033[29;1mReleased under GPL version 2.\033[0m" << std::endl;
259
        std::cout << "\033[29;1mReleased under " + std::string(LICENSE) + ".\033[0m" << std::endl;
260
        std::cout << "Written by Mattias Runge 2010." << std::endl;
260
        std::cout << "Written by Mattias Runge 2010." << std::endl;
261
       
261
       
262
        std::cout << "Connecting to " << variable_map["server"].as<std::string>().data() << ":" << variable_map["port"].as<unsigned int>() << "..." << std::endl;
262
        std::cout << "Connecting to " << variable_map["server"].as<std::string>().data() << ":" << variable_map["port"].as<unsigned int>() << "..." << std::endl;
263
    }
263
    }
264
   
264