#ifndef CAMPSELLER_H #define CAMPSELLER_H #include class CampSeller : public ISeller { Q_OBJECT public: explicit CampSeller(QObject *parent = nullptr); // ISeller interface public: void prepareItem() override; }; #endif // CAMPSELLER_H