#include <iostream>
Go to the source code of this file.
Defines | |
#define | SAGA_GUARDED_EXEC(BLOCK) |
Functions | |
void | list_services (std::string svc_filter, std::string data_filter) |
#define SAGA_GUARDED_EXEC | ( | BLOCK | ) |
Value:
try{ \ BLOCK \ } \ catch (saga::exception const& e) { \ std::cerr << e.what () << std::endl; \ } \ catch (std::exception const& e) { \ std::cerr << e.what() << std::endl; \ } \ catch (...) { \ std::cerr << std::endl; \ } \
void list_services | ( | std::string | svc_filter, | |
std::string | data_filter | |||
) |