blob: c14afd077154a9b23c761a07cd502a8e6c717641 (
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
37
38
|
//
// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef BOOST_SRC_LOCALE_MO_LAMBDA_HPP_INCLUDED
#define BOOST_SRC_LOCALE_MO_LAMBDA_HPP_INCLUDED
#include <boost/shared_ptr.hpp>
namespace boost {
namespace locale {
namespace gnu_gettext {
namespace lambda {
struct plural {
virtual int operator()(int n) const = 0;
virtual plural *clone() const = 0;
virtual ~plural()
{
}
};
typedef boost::shared_ptr<plural> plural_ptr;
plural_ptr compile(char const *c_expression);
} // lambda
} // gnu_gettext
} // locale
} // boost
#endif
// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
|