-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cxx-qt-gen: enable missing_docs and fix missing docs
- Loading branch information
1 parent
b0a9700
commit 10677ce
Showing
8 changed files
with
28 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,11 @@ | |
// SPDX-FileContributor: Gerhard de Clercq <[email protected]> | ||
// | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
|
||
#![deny(missing_docs)] | ||
|
||
//! The cxx-qt-gen crate provides methods for generated C++ and Rust code from a TokenStream. | ||
mod generator; | ||
mod naming; | ||
mod parser; | ||
|
@@ -13,8 +18,8 @@ pub use generator::{ | |
cpp::{fragment::CppFragment, GeneratedCppBlocks}, | ||
rust::GeneratedRustBlocks, | ||
}; | ||
pub use parser::{qobject::QmlElementMetadata, Parser}; | ||
pub use syntax::{parse_qt_file, CxxQtItem}; | ||
pub use parser::Parser; | ||
pub use syntax::{parse_qt_file, CxxQtFile, CxxQtItem}; | ||
pub use writer::{cpp::write_cpp, rust::write_rust}; | ||
|
||
pub use syn::{Error, Result}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters