Пример #1
0
		///////////////////////////////////////////////////////////////////////////

		//public Reader()
		//{
		//}


		///////////////////////////////////////////////////////////////////////////

		public Reader( GrandCentral gc, IBaseReader reader )
		{
			this.gc = gc;
			this.reader = reader;
		}
Пример #2
0
		/////////////////////////////////////////////////////////////////////////////

		public CoreMacros( IMacroProcessor mp )
			:	base(mp)
		{
			this.gc = Get<GrandCentral>();
		}
Пример #3
0
		/////////////////////////////////////////////////////////////////////////////

		public MasterOutput( GrandCentral gc )
		{
			// ******
			blocks = gc.GetTextBlocks();
			chars = gc.GetEscapedChars();

			// ******
			diversions = new Diversions();
			diversionsStack = new DiversionStack();

			// ******
			current = diversions.GetDiversion( Diversion.DEFAULT_DIV_NAME );
			sbOutput = current.Value;
		}