summaryrefslogtreecommitdiff
path: root/src/args.hh
blob: 7a0f4fc123494cf26458e7f983b8eee1ad17e496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ARGS_HH
#define ARGS_HH

#include <string>
#include <vector>

namespace stuff {

class Args {
public:
    static bool parse(const std::string& input,
                      std::vector<std::string>* output,
                      bool nice = true);

private:
    Args() = delete;
    ~Args() = delete;
};

}  // namespace stuff

#endif /* ARGS_HH */