| 24 | class client_sample { |
| 25 | public: |
| 26 | client_sample(bool _use_tcp, bool _be_quiet, uint32_t _cycle) : |
| 27 | app_(vsomeip::runtime::get()->create_application()), request_(vsomeip::runtime::get()->create_request(_use_tcp)), |
| 28 | use_tcp_(_use_tcp), be_quiet_(_be_quiet), cycle_(_cycle), running_(true), blocked_(false), is_available_(false), |
| 29 | sender_(std::bind(&client_sample::run, this)) { } |
| 30 | |
| 31 | bool init() { |
| 32 | if (!app_->init()) { |
nothing calls this directly
no test coverage detected