From 73fe0f1d427aadef1f88d4fa46fc0450fa66e59d Mon Sep 17 00:00:00 2001 From: Louis-Guillaume Gagnon Date: Tue, 3 Sep 2013 10:27:09 -0400 Subject: [PATCH] Create Tools/Filter.hs --- src/Tools/Filter.hs | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Tools/Filter.hs diff --git a/src/Tools/Filter.hs b/src/Tools/Filter.hs new file mode 100644 index 0000000..a9bf0ec --- /dev/null +++ b/src/Tools/Filter.hs @@ -0,0 +1,33 @@ +{- + Tools/Filter.hs + + Copyright 2013 Louis-Guillaume Gagnon + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +-} + +module Tools.Filter ( +) where + +data Filter = File String + | Title String + | Authors String + | Keywords String + | Journal String + | Volume String + | Year String + | Pages String + | Bookmarked String + deriving (Show) + -- 2.11.4.GIT