mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
42 lines
892 B
C++
42 lines
892 B
C++
|
#ifndef SPROUT_WEED_PARSER_RESULT_HPP
|
||
|
#define SPROUT_WEED_PARSER_RESULT_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace weed {
|
||
|
//
|
||
|
// parser_result
|
||
|
//
|
||
|
template<typename Iterator, typename Attribute>
|
||
|
class parser_result {
|
||
|
private:
|
||
|
bool success_;
|
||
|
Iterator current_;
|
||
|
Attribute attr_;
|
||
|
public:
|
||
|
parser_result() = default;
|
||
|
SPROUT_CONSTEXPR parser_result(
|
||
|
bool success,
|
||
|
Iterator current,
|
||
|
Attribute const& attr
|
||
|
)
|
||
|
: success_(success)
|
||
|
, current_(current)
|
||
|
, attr_(attr)
|
||
|
{}
|
||
|
SPROUT_CONSTEXPR bool success() const {
|
||
|
return success_;
|
||
|
}
|
||
|
SPROUT_CONSTEXPR Iterator current() const {
|
||
|
return current_;
|
||
|
}
|
||
|
SPROUT_CONSTEXPR Attribute const& attr() const {
|
||
|
return attr_;
|
||
|
}
|
||
|
};
|
||
|
} // namespace weed
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_WEED_PARSER_RESULT_HPP
|