Index: src/shared/ContentType.h |
diff --git a/src/shared/ContentType.h b/src/shared/ContentType.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..30615a40b3f7713fb6f6195108a5406ddd608049 |
--- /dev/null |
+++ b/src/shared/ContentType.h |
@@ -0,0 +1,11 @@ |
+#pragma once |
+#include <AdblockPlus/FilterEngine.h> |
+ |
+namespace Communication |
+{ |
+ class InputBuffer; |
+ class OutputBuffer; |
+} |
+ |
+Communication::InputBuffer& operator>>(Communication::InputBuffer& in, AdblockPlus::FilterEngine::ContentType& contentType); |
+Communication::OutputBuffer& operator<<(Communication::OutputBuffer& out, AdblockPlus::FilterEngine::ContentType contentType); |