Added yp2::PlainFile class which reads Unix-style plain text files.
[metaproxy-moved-to-github.git] / src / filter_template.cpp
index 1c3bf86..e367020 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_template.cpp,v 1.1 2005-11-14 23:35:22 adam Exp $
+/* $Id: filter_template.cpp,v 1.6 2006-01-09 21:20:15 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -7,7 +7,6 @@
 #include "config.hpp"
 
 #include "filter.hpp"
-#include "router.hpp"
 #include "package.hpp"
 
 #include <boost/thread/mutex.hpp>
@@ -28,22 +27,34 @@ namespace yp2 {
     }
 }
 
-using namespace yp2;
-
 yf::Template::Template() : m_p(new Rep)
 {
+    m_p->dummy = 1;
 }
 
 yf::Template::~Template()
-{
+{  // must have a destructor because of boost::scoped_ptr
 }
 
-void yf::Template::process(Package &package) const
+void yf::Template::process(yp2::Package &package) const
 {
     // Z_GDU *gdu = package.request().get();
     package.move();
 }
 
+static yp2::filter::Base* filter_creator()
+{
+    return new yp2::filter::Template;
+}
+
+extern "C" {
+    struct yp2_filter_struct yp2_filter_template = {
+        0,
+        "template",
+        filter_creator
+    };
+}
+
 
 /*
  * Local variables: