public ProfilingOptions( ProfilingOptions Src, bool bShouldLockOptions )
			: this()
		{
			for( int i = 0; i < CheckBoxes.Length; i++ )
			{
				CheckBoxes[ i ].Checked = Src.CheckBoxes[ i ].Checked;
			}

			if( bShouldLockOptions )
			{
				LockOptions();
			}
		}
        public ProfilingOptions(ProfilingOptions Src, bool bShouldLockOptions)
            : this()
        {
            for (int i = 0; i < CheckBoxes.Length; i++)
            {
                CheckBoxes[i].Checked = Src.CheckBoxes[i].Checked;
            }

            if (bShouldLockOptions)
            {
                LockOptions();
            }
        }
Exemple #3
0
 /// <summary> Constructor, associating this stream info with a filename. </summary>
 /// <param name="InFileName"> FileName to use for this stream </param>
 public FStreamInfo(string InFileName, ProfilingOptions InCreationOptions)
 {
     FileName        = InFileName;
     CreationOptions = new ProfilingOptions(InCreationOptions, true);
 }
Exemple #4
0
		/// <summary> Constructor, associating this stream info with a filename. </summary>
		/// <param name="InFileName"> FileName to use for this stream </param>
		public FStreamInfo( string InFileName, ProfilingOptions InCreationOptions )
		{
			FileName = InFileName;
			CreationOptions = new ProfilingOptions( InCreationOptions, true );
		}