rtps_idl_grammar/
lib.rs

1// Copyright (C) 2019  Frank Rehberger
2// Copyright (C) 2017  Kevin Pansky
3
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7// option. This file may not be copied, modified, or distributed
8// except according to those terms.
9
10//! # Object Management Group IDL v4.0 grammar
11//!
12//! Contains grammar for OMG IDL v4.0.
13
14extern crate pest;
15#[macro_use]
16extern crate pest_derive;
17
18/// OMG IDL v4 parser
19#[derive(Parser)]
20#[grammar = "grammar/idl_v4.pest"]
21pub struct IdlParser;