This commit is contained in:
2025-08-05 12:32:23 +02:00
commit c35c0a724e
13 changed files with 668 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef IMAGES_CAROUSEL_H
#define IMAGES_CAROUSEL_H
#include <QWidget>
namespace Ui {
class ImagesCarousel;
}
class ImagesCarousel : public QWidget {
Q_OBJECT
public:
explicit ImagesCarousel(QWidget *parent = nullptr);
~ImagesCarousel();
private:
Ui::ImagesCarousel *ui;
};
#endif // IMAGES_CAROUSEL_H