videocollection/tsrc/stubs/inc/hbstyleloader.h
changeset 35 3738fe97f027
parent 34 bbb98528c666
equal deleted inserted replaced
34:bbb98528c666 35:3738fe97f027
    41    virtual ~HbStyleLoader(){initializeCount--;}
    41    virtual ~HbStyleLoader(){initializeCount--;}
    42    
    42    
    43    static bool registerFilePath(const QString &filePath) 
    43    static bool registerFilePath(const QString &filePath) 
    44    { 
    44    { 
    45        Q_UNUSED(filePath);
    45        Q_UNUSED(filePath);
    46        return true; 
    46        return mRegisterFilePathReturnValue; 
    47    }
    47    }
    48    
    48    
    49    static bool unregisterFilePath(const QString &filePath) 
    49    static bool unregisterFilePath(const QString &filePath) 
    50    { 
    50    { 
    51        Q_UNUSED(filePath);
    51        Q_UNUSED(filePath);
    55     /**
    55     /**
    56      * counter to make sure alloc dealloc match
    56      * counter to make sure alloc dealloc match
    57      */
    57      */
    58     static int initializeCount;
    58     static int initializeCount;
    59     
    59     
       
    60     /**
       
    61      * returned from registerFilePath
       
    62      */
       
    63     static bool mRegisterFilePathReturnValue;
       
    64     
    60 signals:
    65 signals:
    61             
    66             
    62 };
    67 };
    63 
    68 
    64 #endif
    69 #endif