diff options
Diffstat (limited to 'knotes/KNotesAppIface.h')
-rw-r--r-- | knotes/KNotesAppIface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/knotes/KNotesAppIface.h b/knotes/KNotesAppIface.h index ad24a58b8..dea2881ea 100644 --- a/knotes/KNotesAppIface.h +++ b/knotes/KNotesAppIface.h @@ -34,6 +34,7 @@ #include <tqstring.h> #include <tqmap.h> +#include <tqdatetime.h> #include <dcopobject.h> @@ -210,6 +211,12 @@ k_dcop: * new as well!) and false if the note is not modified or doesn't exist */ virtual bool isModified( const TQString& app, const TQString& noteId ) const = 0; + + /** + * Get the last modified time of a note + * @return the last modified time as a TQDateTime + */ + virtual TQDateTime getLastModified( const TQString& noteId ) const = 0; }; #endif |