Index: compiled/filter/CommentFilter.h |
=================================================================== |
--- a/compiled/filter/CommentFilter.h |
+++ b/compiled/filter/CommentFilter.h |
@@ -16,16 +16,26 @@ |
*/ |
#pragma once |
#include "Filter.h" |
class CommentFilter : public Filter |
{ |
+ DependentString mParam; |
+ DependentString mValue; |
public: |
static constexpr Type classType = Type::COMMENT; |
explicit CommentFilter(const String& text); |
static Type Parse(const String& text); |
static CommentFilter* Create(const String& text); |
+ const String& GetParam() const |
+ { |
+ return mParam; |
+ } |
+ const String& GetValue() const |
+ { |
+ return mValue; |
+ } |
}; |
typedef intrusive_ptr<CommentFilter> CommentFilterPtr; |