13 lines
203 B
C++
13 lines
203 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
namespace cvmmap_streamer {
|
|
|
|
void print_help(std::string_view executable);
|
|
bool has_help_flag(int argc, char **argv);
|
|
void pipeline_tick();
|
|
void protocol_step();
|
|
|
|
}
|