namespace ZoneCodeGenerator.Parsing
{
interface IIncludingParsingStream : IParsingFileStream
{
///
/// Pushes back current file and the position in it to read from another file now instead.
/// After completion returns back to the previous file.
///
///
void IncludeFile(string filename);
}
}