Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Lyx/src/   (Lyx Latech Document Processor ©)  Datei vom 26.9.1998 mit Größe 1 kB image not shown  

Quelle  error.h

  Sprache: C
 

// -*- C++ -*-

#ifndef _ERROR_H_
#define _ERROR_H_

#ifdef __GNUG__
#pragma interface
#endif

#include "LString.h"

///
class Error
{
public:
 ///
 enum DEBUG_LEVELS {
  ///
  INFO       = (1),        // 1
  ///
  INIT       = (1 << 1),   // 2
  ///
  KEY        = (1 << 2),   // 4
  ///
  TOOLBAR    = (1 << 3),   // 8
  ///
  LEX_PARSER = (1 << 4),   // 16
  ///
  LYXRC      = (1 << 5),   // 32
  ///
  KBMAP      = (1 << 6),   // 64
  ///
  LATEX      = (1 << 7),   // 128
  ///
  MATHED     = (1 << 8),   // 256 // Alejandro, please use this.
  ///
  FONT       = (1 << 9),   // 512
  ///
  TCLASS     = (1 << 10),  // 1024
  ///
  LYXVC      = (1 << 11),  // 2048
  ///
  ROFF       = (1 << 12),  // 4096
  ///
  LYXSERVER  = (1 << 13),  // 8192
  ///
  ALL        = (65535),    // 2^16-1
  ///
  ANY        = ALL
 };
 ///
 Error(int level = 0);
 ///
 void setDebugLevel(int level);
 /// Not implemented yet.
 void setLogLevel(int level);
 /// Not implemented yet.
 void setLogFile(LString const & filename);
 ///
 void debug(LString const & msg, int level = INFO); // or ANY?
 ///
 bool debugging(int level = INFO) // or ANY?
 {
  return (bool)(debuglevel & level);
 }
 ///
 void print(LString const & msg);
protected:
private:
 ///
 int debuglevel;
 ///
 int loglevel;
};

/// The global instance of the Error class.
extern Error lyxerr;

#endif

Messung V0.5 in Prozent
C=91 H=98 G=94

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.