10 lines
199 B
C++
10 lines
199 B
C++
#ifndef GRAPH_H_
|
|
#define GRAPH_H_
|
|
|
|
#include <string>
|
|
|
|
std::string get_graph_by_percentage(unsigned, unsigned len = 10);
|
|
std::string get_graph_by_value(unsigned, unsigned, unsigned len = 10);
|
|
|
|
#endif
|