1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
pub mod paragraph;
pub mod heading;
pub mod chapter_builder;
pub mod chapter_tag;

use std::sync::{Arc, RwLock};

use chapter_tag::ChapterTag;
use getset::{Getters, MutGetters, Setters};
use rayon::iter::{IntoParallelRefMutIterator, ParallelIterator};


use crate::codex::Codex;
use crate::compiler::compilation_configuration::compilation_configuration_overlay::CompilationConfigurationOverLay;
use crate::compiler::compilation_configuration::CompilationConfiguration;
use crate::compiler::compilation_error::CompilationError;
use crate::output_format::OutputFormat;

use self::heading::Heading;
pub use self::paragraph::Paragraph;


#[derive(Debug, Getters, MutGetters, Setters)]
pub struct Chapter {

    #[getset(get = "pub", get_mut = "pub", set = "pub")]
    heading: Heading,

    #[getset(get = "pub", get_mut = "pub", set = "pub")]
    tags: Vec<ChapterTag>,
    
    #[getset(get = "pub", get_mut = "pub", set = "pub")]
    paragraphs: Vec<Paragraph>,
}


impl Chapter {

    pub fn new(heading: Heading, tags: Vec<ChapterTag>, paragraphs: Vec<Paragraph>) -> Self {
        Self {
            heading,
            tags,
            paragraphs
        }
    }
}