Checking in WiP on the MessageModel. More cleanly separated code and compiling of...
[quassel.git] / src / common / util.h
index 9354620..5c954b2 100644 (file)
@@ -21,6 +21,7 @@
 #ifndef _UTIL_H_
 #define _UTIL_H_
 
+#include <QDir>
 #include <QIODevice>
 #include <QVariant>
 #include <QString>
@@ -34,6 +35,8 @@ QString hostFromMask(QString mask);
 bool isChannelName(QString str);
 
 
+QString secondsToString(int timeInSeconds);
+
 //! Take a string and decode it using the specified text codec, recognizing utf8.
 /** This function takes a string and first checks if it is encoded in utf8, in which case it is
  *  decoded appropriately. Otherwise, the specified text codec is used to transform the string.
@@ -51,4 +54,6 @@ uint editingDistance(const QString &s1, const QString &s2);
 
 QByteArray methodName(const QMetaMethod &method);
 
+QDir quasselDir();
+
 #endif