GDBDebugFlags.st
changeset 7 7a51f98e7162
child 9 5cc8797f6523
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBDebugFlags.st	Mon Jun 02 23:56:27 2014 +0100
@@ -0,0 +1,23 @@
+"{ Package: 'jv:libgdbs' }"
+
+SharedPool subclass:#GDBDebugFlags
+	instanceVariableNames:''
+	classVariableNames:'TraceEvents'
+	poolDictionaries:''
+	category:'GDB-Private'
+!
+
+!GDBDebugFlags class methodsFor:'initialization'!
+
+initialize
+    "Invoked at system start or when the class is dynamically loaded."
+
+    "/ please change as required (and remove this comment)
+
+    TraceEvents := true.
+
+    "Modified: / 02-06-2014 / 23:24:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+
+GDBDebugFlags initialize!