summaryrefslogtreecommitdiff
path: root/libs/audiographer/src/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/src/utils.cc')
-rw-r--r--libs/audiographer/src/utils.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/audiographer/src/utils.cc b/libs/audiographer/src/utils.cc
new file mode 100644
index 0000000000..018fad3113
--- /dev/null
+++ b/libs/audiographer/src/utils.cc
@@ -0,0 +1,14 @@
+#include "audiographer/utils.h"
+
+using namespace AudioGrapher;
+
+char const * Utils::zeros = 0;
+unsigned long Utils::num_zeros = 0;
+
+void
+Utils::free_resources()
+{
+ num_zeros = 0;
+ delete [] zeros;
+ zeros = 0;
+} \ No newline at end of file