namespace QFSW.QC
{
///
/// Creates a Preprocessor that is loaded and used by the QuantumConsoleProcessor.
///
public interface IQcPreprocessor
{
///
/// The priority of this preprocessor to resolve processing order.
///
int Priority { get; }
///
/// Processes the provided text.
///
/// The text to process.
/// The processed text.
string Process(string text);
}
}