27 lines
467 B
C++
27 lines
467 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "HwilClient.hpp"
|
|
#include "TimeoutError.hpp"
|
|
|
|
int main()
|
|
{
|
|
try
|
|
{
|
|
//while (1)
|
|
// HwilClient::instance()->startingScenario(Constants::RemoteHosts::SWDEV_PC);
|
|
|
|
while (1)
|
|
HwilClient::instance()->endingScenario(Constants::RemoteHosts::SWDEV_PC);
|
|
}
|
|
catch (Exception& e)
|
|
{
|
|
std::cout << e.getMessage() << std::endl;
|
|
}
|
|
|
|
std::cout << "Press any key to quit: ";
|
|
|
|
std::string str;
|
|
std::cin >> str;
|
|
return 0;
|
|
} |