Example #1
0
 //────────────────────────────────────────
 /// <summary>
 /// コンストラクター。
 /// </summary>
 public MemoryApplicationImpl()
 {
     this.memoryBackup = new MemoryBackupImpl(this);
     this.memoryValidators = new MemoryValidatorsImpl(this);
     this.memoryTogethers = new MemoryTogethersImpl(this);
     this.memoryTables = new MemoryTablesImpl(this);
     this.memoryCodefiles = new MemoryCodefilesImpl(this);
     this.memoryFunctions = new MemoryFunctionsImpl(this);
     this.memoryVariables = new MemoryVariablesImpl(this);
     this.memoryForms = new MemoryFormsImpl(this);
     this.memoryStyles = new MemoryStylesImpl();
     this.memoryLogwriter = new MemoryLogwriterImpl();
     this.memoryBrushes = new MemoryBrushesImpl();
     this.memoryAatoolxml = new MemoryAatoolxmlImpl(this);
     this.memoryRecordset = new MemoryRecordsetImpl();
 }
Example #2
0
 public void Reset()
 {
     this.Memory        = (int[])MemoryBackup.Clone();
     InstructionPointer = 0;
 }