1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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