From 492272dec414a49b364c9427e88dc365151a310c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 May 2014 14:16:12 -0400 Subject: [PATCH] CmdExport - Converted from A3 to Filter. --- src/commands/CmdExport.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/CmdExport.cpp b/src/commands/CmdExport.cpp index 20ac068a8..73d18826b 100644 --- a/src/commands/CmdExport.cpp +++ b/src/commands/CmdExport.cpp @@ -26,6 +26,7 @@ #include #include +#include #include #include #include @@ -48,8 +49,9 @@ int CmdExport::execute (std::string& output) int rc = 0; // Apply filter. + Filter filter; std::vector filtered; - filter (filtered); + filter.subset (filtered); // Note: "limit:" feature not supported. // TODO Why not?