aboutsummaryrefslogtreecommitdiff
path: root/src/FilterConfig.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-02-01 18:40:36 +0100
committerMax Kellermann <max@duempel.org>2013-02-02 09:34:07 +0100
commita9ce0218c1879a752c9d9ec6ef21fcf44eab51ab (patch)
treef30de05c9f0a45906d31d2d4a3dad2281fe8d49c /src/FilterConfig.hxx
parent7bb5a960fde46363adf888db5b05b7b883d2b16b (diff)
FilterInternal: convert struct filter to a OO interface
Diffstat (limited to 'src/FilterConfig.hxx')
-rw-r--r--src/FilterConfig.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FilterConfig.hxx b/src/FilterConfig.hxx
index 18cc5c44..bad18635 100644
--- a/src/FilterConfig.hxx
+++ b/src/FilterConfig.hxx
@@ -27,7 +27,7 @@
#include "gerror.h"
-struct filter;
+class Filter;
/**
* Builds a filter chain from a configuration string on the form
@@ -39,6 +39,6 @@ struct filter;
* @return the number of filters which were successfully added
*/
unsigned int
-filter_chain_parse(struct filter *chain, const char *spec, GError **error_r);
+filter_chain_parse(Filter &chain, const char *spec, GError **error_r);
#endif