Changelog for 0.0.8
[harmattan/cameraplus] / declarative / notificationscontainer.h
index 18c7a14..3e4b6b9 100644 (file)
@@ -3,7 +3,7 @@
 /*!
  * This file is part of CameraPlus.
  *
- * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,7 @@
 #include <QMutex>
 
 class QtCamDevice;
-class DeclarativeQtCameraNotifications;
+class Sounds;
 
 class NotificationsContainer : public QObject {
   Q_OBJECT
@@ -38,8 +38,8 @@ public:
   ~NotificationsContainer();
 
   void setDevice(QtCamDevice *dev);
-  DeclarativeQtCameraNotifications *notifications() const;
-  bool setNotifications(DeclarativeQtCameraNotifications *notifications);
+  Sounds *sounds() const;
+  bool setSounds(Sounds *sounds);
 
 private slots:
   void imageCaptureStarted();
@@ -50,7 +50,7 @@ private slots:
 
 private:
   QPointer<QtCamDevice> m_dev;
-  DeclarativeQtCameraNotifications *m_notifications;
+  Sounds *m_sounds;
   QMutex m_mutex;
 };