| Index: compiled/subscription/Subscription.h |
| =================================================================== |
| --- a/compiled/subscription/Subscription.h |
| +++ b/compiled/subscription/Subscription.h |
| @@ -76,16 +76,26 @@ |
| Type mType; |
| const BINDINGS_EXPORTED String& GetID() const |
| { |
| return mID; |
| } |
| + void SetFilters(Filters&& filters) |
| + { |
| + mFilters = filters; |
| + } |
| + |
| + void ClearFilters() |
| + { |
| + mFilters.clear(); |
| + } |
| + |
| SUBSCRIPTION_STRING_PROPERTY(mTitle, SUBSCRIPTION_TITLE, GetTitle, SetTitle); |
| SUBSCRIPTION_PROPERTY(bool, mDisabled, SUBSCRIPTION_DISABLED, |
| GetDisabled, SetDisabled); |
| SUBSCRIPTION_PROPERTY(bool, mListed, NONE, GetListed, SetListed); |
| Filters::size_type BINDINGS_EXPORTED GetFilterCount() const |
| { |
| return mFilters.size(); |