aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/numrange.cc
blob: 6cbb90ace52cbb4afcaaf7fa089adbe31404c3f1 (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
33
34
35
36
#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;
}