summaryrefslogtreecommitdiff
path: root/ui/gridView.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gridView.h')
-rw-r--r--ui/gridView.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/gridView.h b/ui/gridView.h
index eaa8ad8c..8cd21915 100644
--- a/ui/gridView.h
+++ b/ui/gridView.h
@@ -1,3 +1,9 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
#ifndef GRIDVIEW_H_INCLUDED
#define GRIDVIEW_H_INCLUDED
@@ -99,6 +105,7 @@ public:
SORT_BY_FILENAME,
SORT_BY_FILESIZE,
SORT_BY_DATE,
+ SORT_BY_EXTENSION,
SORT_BY_CMP_RESULT,
SORT_BY_DIRECTORY,
SORT_BY_SYNC_DIRECTION
@@ -150,6 +157,9 @@ private:
template <bool ascending, SelectedSide side>
class SortByDate;
+ template <bool ascending, SelectedSide side>
+ class SortByExtension;
+
template <bool ascending>
class SortByCmpResult;
bgstack15