aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/numrange.cc
blob: d1548fe9a56e78a961561e4cc52c42fc3b23e8ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <qpdf/QUtil.hh>
#include <iostream>

static void
test_numrange(char const* range)
{
    if (range == 0) {
        std::cout << "null" << std::endl;
    } else {
        std::vector<int> result = QUtil::parse_numrange(range, 15);
        std::cout << "numeric range " << range << " ->";
        for (std::vector<int>::iterator iter = result.begin();
             iter != result.end();
             ++iter) {
            std::cout << " " << *iter;
        }
        std::cout << std::endl;
    }
}

int
main(int argc, char* argv[])
{
    try {
        test_numrange(argv[1]);
    } catch (std::exception& e) {
        std::cout << e.what() << std::endl;
        return 2;
    }

    return 0;
}