Files
o3de/Code/Editor/Util/AbstractSortModel.h
T
2021-06-29 13:55:28 -07:00

26 lines
486 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef ABSTRACTSORTMODEL_H
#define ABSTRACTSORTMODEL_H
#if !defined(Q_MOC_RUN)
#include <QAbstractItemModel>
#endif
class AbstractSortModel
: public QAbstractTableModel
{
Q_OBJECT
public:
AbstractSortModel(QObject* parent = nullptr);
virtual bool LessThan(const QModelIndex& lhs, const QModelIndex& rhs) const;
};
#endif // ABSTRACTSORTMODEL_H