 Issue 29333474:
  Issue 4125 - [emscripten] Convert filter classes to C++  (Closed)
    
  
    Issue 29333474:
  Issue 4125 - [emscripten] Convert filter classes to C++  (Closed) 
  | 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; | 
| +}; |