예제 #1
0
 public BitfieldData(string name, uint offset, long address, BitfieldType type, uint pluginLine)
     : base(name, offset, address, pluginLine)
 {
     _type             = type;
     CheckAllCommand   = new QuickCheckCommand(this, true);
     UncheckAllCommand = new QuickCheckCommand(this, false);
 }
예제 #2
0
 public FlagData(string name, uint offset, long address, FlagsType type, uint pluginLine, string tooltip)
     : base(name, offset, address, pluginLine, tooltip)
 {
     _type             = type;
     CheckAllCommand   = new QuickCheckCommand(this, true);
     UncheckAllCommand = new QuickCheckCommand(this, false);
 }
예제 #3
0
		public BitfieldData(string name, uint offset, uint address, BitfieldType type, uint pluginLine)
			: base(name, offset, address, pluginLine)
		{
			_type = type;
			CheckAllCommand = new QuickCheckCommand(this, true);
			UncheckAllCommand = new QuickCheckCommand(this, false);
		}