| Index: compiled/CommentFilter.h | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/compiled/CommentFilter.h | 
| @@ -0,0 +1,17 @@ | 
| +#ifndef ADBLOCKPLUS_COMMENTFILTER_H | 
| +#define ADBLOCKPLUS_COMMENTFILTER_H | 
| + | 
| +#include <string> | 
| + | 
| +#include "Filter.h" | 
| + | 
| +class CommentFilter : public Filter | 
| +{ | 
| +public: | 
| +  CommentFilter(const std::u16string& text); | 
| +  static Type Parse(const std::u16string& text); | 
| +  static CommentFilter* Create(const std::u16string& text); | 
| +  Type GetType(); | 
| +}; | 
| + | 
| +#endif | 
|  |