stripper_lib/lib.rs
1// Copyright 2015 Gomez Guillaume
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15mod consts;
16pub mod regenerate;
17pub mod strip;
18pub mod types;
19pub mod utils;
20
21pub use consts::{END_INFO, FILE, FILE_COMMENT, MOD_COMMENT, OUTPUT_COMMENT_FILE};
22pub use regenerate::{parse_cmts, regenerate_comments, regenerate_doc_comments};
23pub use strip::strip_comments;
24pub use types::{EventType, Type, TypeStruct};
25pub use utils::{
26 loop_over_files, write_comment, write_file, write_file_comment, write_file_name, write_item_doc,
27};