123456789101112131415161718192021222324252627282930 |
- /**
- * 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 PURCHASABLEITEMNONPROTECTED_H
- #define PURCHASABLEITEMNONPROTECTED_H
- #include "purchasableitembase.h"
- class DeclarativePurchaseListModel;
- class PurchasableItemNonProtected : public PurchasableItemBase
- {
- Q_OBJECT
- public:
- explicit PurchasableItemNonProtected(DeclarativePurchaseListModel& model, QString& productID, QString& url);
- protected:
- void setUnlocked(QString* purchaseTicket);
- bool isPurchased();
- };
- #endif // PURCHASABLEITEMNONPROTECTED_H
|