using System;
namespace mustache
{
///
/// Applies the values of an object to the format plan, generating a string.
///
internal interface IGenerator
{
///
/// Generates the text when the values of the given object are applied to the format plan.
///
/// The object whose values should be used to generate the text.
/// The generated text.
string GetText(object source);
}
}