Index: compiled/CommentFilter.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/compiled/CommentFilter.h |
@@ -0,0 +1,12 @@ |
+#pragma once |
+ |
+#include "Filter.h" |
+ |
+class CommentFilter : public Filter |
+{ |
+public: |
+ explicit CommentFilter(const String& text); |
+ static Type Parse(const String& text); |
+ static CommentFilter* Create(const String& text); |
+ Type GetType() const override; |
+}; |