-fpermissive to allow GCC to compile old C++
[oweals/cde.git] / cde / programs / dtmail / dtmail / SortCmd.hh
1 /* $TOG: SortCmd.hh /main/4 1998/09/21 18:52:24 mgreess $ */
2 #include "Sort.hh"
3
4 // commands for sort menu items
5
6 class SortCmd : public ToggleButtonCmd {
7   public:
8     virtual void doit();   
9     SortCmd( char *, char *, int, RoamMenuWindow *, enum sortBy);
10     //SortCmd( char *, int, RoamMenuWindow * );
11     //virtual const char *const className () { return "SortCmd"; }
12   private:
13     RoamMenuWindow      *_sortparent;
14     enum sortBy         _sortstyle;
15     Sort                *_sorter;
16 };