14 lines
497 B
C++
14 lines
497 B
C++
#include "output_options.h"
|
|
|
|
OutputOptions::OutputOptions() {}
|
|
|
|
void OutputOptions::set_print_header(bool value) { this->print_header = value; }
|
|
bool OutputOptions::get_print_header() { return this->print_header; }
|
|
|
|
void OutputOptions::set_print_total(bool value) { this->print_total = value; }
|
|
bool OutputOptions::get_print_total() { return this->print_total; }
|
|
|
|
void OutputOptions::set_path(std::string path) { this->path = path; }
|
|
std::string &OutputOptions::get_path() { return this->path; }
|
|
|