summaryrefslogtreecommitdiff
path: root/openEMS/tools/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'openEMS/tools/global.h')
-rw-r--r--openEMS/tools/global.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/openEMS/tools/global.h b/openEMS/tools/global.h
new file mode 100644
index 0000000..c3bb524
--- /dev/null
+++ b/openEMS/tools/global.h
@@ -0,0 +1,65 @@
+/*
+* Copyright (C) 2010 Sebastian Held <sebastian.held@gmx.de>
+*
+* 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 3 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef GLOBAL_H
+#define GLOBAL_H
+
+#include <sstream>
+
+#define UNUSED(x) (void)(x);
+
+class Global
+{
+public:
+ Global();
+
+ //! Show all possible (global) command line arguments
+ void ShowArguments(std::ostream& ostr, std::string front=std::string());
+
+ //! Parse the given command line arguments
+ bool parseCommandLineArgument( const char *argv );
+
+ bool showProbeDiscretization() const {return m_showProbeDiscretization;}
+
+ //! Returns true if native field dumps are requested...
+ bool NativeFieldDumps() const {return m_nativeFieldDumps;}
+ //! Set dumps to use native fields.
+ void SetNativeFieldDumps(bool val) {m_nativeFieldDumps=val;}
+
+ //! Set the verbose level
+ void SetVerboseLevel(int level) {m_VerboseLevel=level;m_SavedVerboseLevel=level;}
+ //! Get the verbose level
+ int GetVerboseLevel() const {return m_VerboseLevel;}
+
+ //! Set a new verbose level temporarily, restore it with RestoreVerboseLevel()
+ void SetTempVerboseLevel(int level) {m_SavedVerboseLevel=m_VerboseLevel;m_VerboseLevel=level;}
+ //! Restore the temporarily overwritten verbose level
+ void RestoreVerboseLevel() {m_VerboseLevel=m_SavedVerboseLevel;}
+
+protected:
+ bool m_showProbeDiscretization;
+ bool m_nativeFieldDumps;
+ int m_VerboseLevel;
+ int m_SavedVerboseLevel;
+};
+
+extern Global g_settings;
+
+// declare a parameter as unused
+#define UNUSED(x) (void)(x);
+
+#endif // GLOBAL_H