std::string type() function taken out of all filter classes again
[metaproxy-moved-to-github.git] / src / test_filter2.cpp
index 14aa299..c6295b8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: test_filter2.cpp,v 1.14 2005-10-29 22:23:36 marc Exp $
+/* $Id: test_filter2.cpp,v 1.15 2005-10-31 09:40:18 marc Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -27,9 +27,6 @@ public:
        package.data() = m_constant;
        package.move();
     };
-    const std::string type() const {
-        return "FilterConstant";
-    };
     void configure(const xmlNode* ptr = 0);
     int get_constant() const { return m_constant; };
 private:
@@ -118,9 +115,6 @@ public:
        package.data() = package.data() * 2;
        package.move();
     };
-    const std::string type() const {
-        return "FilterConstant";
-    };
 };