Files
Work/common/SORTOPT.HPP
2024-08-07 09:09:36 -04:00

9 lines
143 B
C++

#ifndef _COMMON_SORTOPTIONS_HPP_
#define _COMMON_SORTOPTIONS_HPP_
class SortOptions
{
public:
enum SortOrder{Ascending,Descending};
};
#endif