1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef Fireworks_TableWidget_SortOrder_h
#define Fireworks_TableWidget_SortOrder_h
// -*- C++ -*-
//
// Package: TableWidget
// Class : SortOrder
//
/**\class SortOrder SortOrder.h Fireworks/TableWidget/src/SortOrder.h
Description: Enumeration used to describe the sort ordering of a table
Usage:
Used internally by the table widget to denote the order in which rows have been sorted
*/
//
// Original Author: Chris Jones
// Created: Mon Feb 2 19:10:26 EST 2009
//
// system include files
// user include files
// forward declarations
namespace fireworks {
namespace table {
enum SortOrder { kNotSorted, kAscendingSort, kDescendingSort };
}
} // namespace fireworks
#endif
|