You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
253 B
C
18 lines
253 B
C
8 years ago
|
#ifndef CAMPSELLER_H
|
||
|
#define CAMPSELLER_H
|
||
|
|
||
|
#include <iseller.h>
|
||
|
|
||
|
class CampSeller : public ISeller
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CampSeller(QObject *parent = 0);
|
||
|
|
||
|
// ISeller interface
|
||
|
public:
|
||
|
void prepareItem();
|
||
|
};
|
||
|
|
||
|
#endif // CAMPSELLER_H
|