BiblioteQ
biblioteq_callnum_table_item.h
1 /*
2 ** Jason Perry.
3 */
4 
5 #ifndef _BIBLIOTEQ_CALLNUM_TABLE_ITEM_H_
6 #define _BIBLIOTEQ_CALLNUM_TABLE_ITEM_H_
7 
8 #include <QTableWidgetItem>
9 
10 class biblioteq_callnum_table_item: public QTableWidgetItem
11 {
12  public:
13  biblioteq_callnum_table_item(const QString &str);
14  bool operator <(const QTableWidgetItem &other) const;
15 };
16 
17 #endif
Definition: biblioteq_callnum_table_item.h:10