camerauis/cameraxui/cxengine/inc/cxeimagedataqueuesymbian.h
changeset 19 d9aefe59d544
child 37 64817133cd1d
equal deleted inserted replaced
3:8b2d6d0384b0 19:d9aefe59d544
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 #ifndef CXEIMAGEDATAQUEUESYMBIAN_H
       
    18 #define CXEIMAGEDATAQUEUESYMBIAN_H
       
    19 
       
    20 //  Include Files
       
    21 
       
    22 #include <QList>
       
    23 
       
    24 #include "cxeimagedataqueue.h"
       
    25 #include "cxeimagedataitemsymbian.h"
       
    26 
       
    27 //  Constants
       
    28 
       
    29 
       
    30 //  Class Definitions
       
    31 
       
    32 class QImage;
       
    33 class CxeImageDataItem;
       
    34 
       
    35 class CxeImageDataQueueSymbian : public CxeImageDataQueue
       
    36 {
       
    37     Q_OBJECT
       
    38 
       
    39 public:
       
    40     CxeImageDataQueueSymbian();
       
    41     virtual ~CxeImageDataQueueSymbian();
       
    42 
       
    43 
       
    44 public: // from CxeImageDataQueue
       
    45     int size() const;
       
    46     void clear();
       
    47     //void deleteImage( int index );
       
    48     //void renameImage( int index, const QString& path );
       
    49     CxeImageDataItem &operator[]( int index );
       
    50 
       
    51 public:  // public member functions, not in client API
       
    52     CxeImageDataItemSymbian *startSave( QByteArray data, QString path, int id );
       
    53 
       
    54 private: // private data members
       
    55     QList<CxeImageDataItemSymbian*> mList;
       
    56 };
       
    57 
       
    58 
       
    59 
       
    60 #endif  // __CXEIMAGEDATAQUEUESYMBIAN_H