9 lines
143 B
C++
9 lines
143 B
C++
#ifndef _COMMON_SORTOPTIONS_HPP_
|
|
#define _COMMON_SORTOPTIONS_HPP_
|
|
|
|
class SortOptions
|
|
{
|
|
public:
|
|
enum SortOrder{Ascending,Descending};
|
|
};
|
|
#endif |