예제 #1
0
파일: Reader.cs 프로젝트: jmclain/Nmp
		///////////////////////////////////////////////////////////////////////////

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


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

		public Reader( GrandCentral gc, IBaseReader reader )
		{
			this.gc = gc;
			this.reader = reader;
		}
예제 #2
0
파일: Core-Main.cs 프로젝트: jmclain/Nmp
		/////////////////////////////////////////////////////////////////////////////

		public CoreMacros( IMacroProcessor mp )
			:	base(mp)
		{
			this.gc = Get<GrandCentral>();
		}
예제 #3
0
파일: Output.cs 프로젝트: jmclain/Nmp
		/////////////////////////////////////////////////////////////////////////////

		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;
		}