videocollection/tsrc/stubs/src/testobjectstore.cpp
changeset 38 ff53afa8ad05
equal deleted inserted replaced
37:4eb2df7f7cbe 38:ff53afa8ad05
       
     1 /*
       
     2 * Copyright (c) 2008-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 
       
    18 #include "testobjectstore.h"
       
    19 
       
    20 TestObjectStore::TestObjectStore()
       
    21 {
       
    22     
       
    23 }
       
    24 
       
    25 TestObjectStore::~TestObjectStore()
       
    26 {
       
    27     while(!mObjects.isEmpty())
       
    28     {
       
    29         QObject *obj = mObjects.takeFirst();
       
    30         delete obj;
       
    31     }
       
    32 }
       
    33 
       
    34 TestObjectStore &TestObjectStore::instance()
       
    35 {
       
    36     static TestObjectStore _store;
       
    37     return _store;
       
    38 }
       
    39 
       
    40 void TestObjectStore::addObject(QObject *object)
       
    41 {
       
    42     if(connect(object, SIGNAL(destroyed(QObject *)), this, SLOT(objectDestroyed(QObject *))))
       
    43     {
       
    44         mObjects.append(object);
       
    45     }
       
    46 }
       
    47 
       
    48 void TestObjectStore::objectDestroyed(QObject *obj)
       
    49 {
       
    50     if(obj)
       
    51     {
       
    52         disconnect(obj, SIGNAL(destroyed(QObject *)), this, SLOT(objectDestroyed(QObject *)));
       
    53         mObjects.removeOne(obj);
       
    54     }
       
    55 }