using System;
using System.IO;
namespace mustache
{
///
/// Applies the values of an object to the format plan, generating a string.
///
internal interface IGenerator
{
///
/// Generates the text when applying the format plan.
///
/// The current lexical scope of the keys.
/// The text writer to send all text to.
/// The generated text.
void GetText(KeyScope scope, TextWriter writer);
}
}