Beispiel #1
0
 public BoolCompilerCommandAttribute(string aEnabledSwitch, string aDisabledSwitch, BoolSwitchDefault aSwitchDefault)
     : base(aEnabledSwitch)
 {
     FDisabledSwitch = aDisabledSwitch;
     FSwitchDefault  = aSwitchDefault;
 }
Beispiel #2
0
 public BoolCompilerCommandAttribute(string aEnabledSwitch)
     : base(aEnabledSwitch)
 {
     FDisabledSwitch = null;
     FSwitchDefault  = BoolSwitchDefault.Disabled;
 }