Qualify type with NS scope (apparently a difference between VS and GCC).
[metaproxy-moved-to-github.git] / src / filter_template.cpp
index 07c0d2a..99d9c57 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_template.cpp,v 1.3 2006-01-04 11:19:04 adam Exp $
+/* $Id: filter_template.cpp,v 1.5 2006-01-09 14:47:09 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -37,7 +37,7 @@ 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();
@@ -49,7 +49,7 @@ static yp2::filter::Base* filter_creator()
 }
 
 extern "C" {
-    const struct yp2_filter_struct yp2_filter_template = {
+    struct yp2_filter_struct yp2_filter_template = {
         0,
         "template",
         filter_creator