16 lines
261 B
C++
16 lines
261 B
C++
#ifndef NUMBERHELPER_H
|
|
#define NUMBERHELPER_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class NumberHelper {
|
|
public:
|
|
NumberHelper();
|
|
|
|
~NumberHelper();
|
|
|
|
static std::vector<int> GetNumbers(const std::string csv);
|
|
};
|
|
|
|
#endif |