summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Doc/Base.pm
blob: 1b7442788f024e3c2e9a02a08d090a2af9bb531c (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();
    }
}