summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmerrorflags.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmerrorflags.h')
-rw-r--r--kpovmodeler/pmerrorflags.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/kpovmodeler/pmerrorflags.h b/kpovmodeler/pmerrorflags.h
new file mode 100644
index 00000000..ce604c9b
--- /dev/null
+++ b/kpovmodeler/pmerrorflags.h
@@ -0,0 +1,31 @@
+//-*-C++-*-
+/*
+**************************************************************************
+ description
+ --------------------
+ copyright : (C) 2000-2001 by Andreas Zehender
+ email : zehender@kde.org
+**************************************************************************
+
+**************************************************************************
+* *
+* This program is free software; you can redistribute it and/or modify *
+* it under the terms of the GNU General Public License as published by *
+* the Free Software Foundation; either version 2 of the License, or *
+* (at your option) any later version. *
+* *
+**************************************************************************/
+
+#ifndef PMERRORFLAGS_H
+#define PMERRORFLAGS_H
+
+/**
+ * Error flags
+ *
+ * These flags are returnd by @ref PMParser::errorFlags( )
+ * and PMCommand::errorFlags( )
+ */
+
+enum PMErrorFlags { PMENone = 0, PMEWarning = 1, PMEError = 2, PMEFatal = 4 };
+
+#endif