Beispiel #1
0
 /// <summary>
 /// Enable the debugging with specified options (Wrapper for ::Enable( Format, Level, Types ) )
 /// </summary>
 /// <param name="Format">Sets the type of the format that debuginformation should be outputted in</param>
 public void Enable(ktDebugFormat Format)
 {
     Enable(Format, 0, 0);
 }
Beispiel #2
0
        /// <summary>
        /// Enable the debugging with specified options
        /// </summary>
        /// <param name="Format">Sets the type of the format that debuginformation should be outputted in</param>
        /// <param name="Level">Sets the level of the debuginformation displayed</param>
        /// <param name="Types">Sets the type of debuginformation that is displayed</param>
        public void Enable(ktDebugFormat Format, int Level, int Types)
        {
            // Set properties
            m_DebugFormat = Format;
            m_DebugLevel = Level;
            m_AcceptedTypes = Types;

            // Enable...
            m_Enabled = true;
        }