summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Doc/Base.pm
blob: 2d6bb1a26bdb1caf1c8fc5d63f3f280ae347d7d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- mode: perl6 -*- 
role WebCoso::Doc::Base[$basename] {
    has $!wc;
    has $.dir;
 
    has $.tt = Maker::TT.new(:$basename,:$!dir,:$!wc);
    has $.rst = Maker::RST.new(:$basename,:$!dir,:$!wc);
    has $.xhtml = Maker::XHTML.new(:$basename,:$!dir,:$!wc);
    has $.html = Maker::HTML.new(:$basename,:$!dir,:$!wc);
 
    method make() {
        .html.get-files();
    }
}