diff options
Diffstat (limited to 'src/entryLayout.h')
-rw-r--r-- | src/entryLayout.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/entryLayout.h b/src/entryLayout.h new file mode 100644 index 0000000..fb4902b --- /dev/null +++ b/src/entryLayout.h @@ -0,0 +1,20 @@ +#ifndef ENTRYLAYOUT_H +#define ENTRYLAYOUT_H + +#include <QDateTime> +#include <QHBoxLayout> +#include <QString> +#include <QUrl> + +#include "entry.h" + +class EntryLayout : public QHBoxLayout { + Q_OBJECT + + public: + Entry entry; + + EntryLayout(const Entry &e); +}; + +#endif |