Added ability to specify file builders

Thanks @pablo67340 (#26)
This commit is contained in:
a2x
2023-11-01 10:01:39 +10:00
parent 56f3255151
commit e06df502e9
8 changed files with 54 additions and 26 deletions

View File

@@ -16,7 +16,7 @@ pub mod rust_file_builder;
/// `FileBuilder` is an enum that defines different kinds of file builders.
/// Each variant corresponds to a builder for a particular type of file.
#[derive(Debug, PartialEq)]
#[derive(Clone, Debug, PartialEq)]
pub enum FileBuilderEnum {
/// Represents a builder for C++ header files.
CppFileBuilder(CppFileBuilder),