1234567891011121314151617181920212223242526 |
- /**
- * Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
- * All rights reserved.
- *
- * For the applicable distribution terms see the license.txt -file, included in
- * the distribution.
- */
- #ifndef PURCHASABLEITEM_H
- #define PURCHASABLEITEM_H
- #include "purchasableitembase.h"
- class PurchasableItem : public PurchasableItemBase
- {
- Q_OBJECT
- public:
- explicit PurchasableItem(DeclarativePurchaseListModel& model, QString& productID, QString& productUrl);
- protected:
- void setUnlocked(QString* purchaseTicket);
- bool isPurchased();
- };
- #endif // PURCHASABLEITEM_H
|