YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
logtabSorting.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#ifndef LOGTAB_SORTING_H
7#define LOGTAB_SORTING_H
8
9#include <QStandardItemModel>
10#include <QSortFilterProxyModel>
11#include <yarp/conf/compiler.h>
12
13class LogSortFilterProxyModel : public QSortFilterProxyModel
14{
15public:
16 LogSortFilterProxyModel( QObject *parent = 0 );
17
18protected:
19 bool lessThan( const QModelIndex &left, const QModelIndex &right ) const override;
20};
21
22#endif // LOGTAB_SORTING_H
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override