Plotly.cpp 0.1.0
A C++ plotting library for expressive, interactive, real-time & streaming data visualization
Loading...
Searching...
No Matches
arg_parser.hpp
Go to the documentation of this file.
1#pragma once
2
9struct GalleryArgs {
10 bool headless = false;
11};
12
23auto parseGalleryArgs(int argc, char *argv[]) -> GalleryArgs;
auto parseGalleryArgs(int argc, char *argv[]) -> GalleryArgs
Parse command line arguments for gallery examples.
Definition arg_parser.cpp:4
Structure to hold parsed gallery command line arguments.
Definition arg_parser.hpp:9
bool headless
Run in headless mode (no browser opening)
Definition arg_parser.hpp:10