001package org.avaje.freemarker.layout;
002
003import java.io.IOException;
004
005public interface RawTemplateSource {
006
007        String getSource(String templateName, String encoding) throws IOException;
008        
009}