24 #ifndef PRINTSORTMODE_H 25 #define PRINTSORTMODE_H 27 #include <tdeversion.h> 29 #if KDE_IS_VERSION(3,3,91) 31 #include <tdeabc/sortmode.h> 33 class PrintSortMode : public TDEABC::SortMode 36 PrintSortMode( TDEABC::Field *field, bool ascending = true ); 38 virtual bool lesser( const TDEABC::Addressee&, const TDEABC::Addressee& ) const; 41 TDEABC::Field *mSortField; 42 TDEABC::Field *mGivenNameField; 43 TDEABC::Field *mFamilyNameField; 44 TDEABC::Field *mFormattedNameField; 48 #endif // KDE_IS_VERSION 50 #endif // PRINTSORTMODE_H
|