diff anagram/guisupport/coveragedc.h @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/anagram/guisupport/coveragedc.h	Sat Dec 22 17:52:45 2007 -0500
@@ -0,0 +1,31 @@
+/*
+ * AnaGram, A System for Syntax Directed Programming
+ * Copyright 1993-2002 Parsifal Software. All Rights Reserved.
+ * See the file COPYING for license and usage terms.
+ *
+ * coveragedc.h
+ */
+
+#ifndef COVERAGEDC_H
+#define COVERAGEDC_H
+
+#include "agarray.h"
+#include "dc.h"
+
+
+class rule_count_dc : public dc {
+public:
+  AgArray<unsigned> counts;
+
+  rule_count_dc(const char *name, AgArray<unsigned>);
+  rule_count_dc(rule_count_dc &x) : dc(x) {}
+
+  virtual void getLine(unsigned) const;
+  virtual void synchCursor(unsigned) const;
+  //virtual dc_ref onCloneKey(void) { return new rule_count_dc(*this); }
+};
+
+extern dc_ref read_counts(AgString);
+
+
+#endif /* COVERAGEDC_H */