contentstorage/caclient/src/cahandlerloader.cpp
changeset 103 b99b84bcd2d1
parent 83 156f692b1687
equal deleted inserted replaced
83:156f692b1687 103:b99b84bcd2d1
    31 */
    31 */
    32 CaHandlerLoader::~CaHandlerLoader()
    32 CaHandlerLoader::~CaHandlerLoader()
    33 {
    33 {
    34 }
    34 }
    35 
    35 
       
    36 /*!
       
    37     \fn virtual CaHandler *loadHandler(const QString &entryTypeName,
       
    38                                    const QString &commandName) = 0;
       
    39     Loads handler implementations appropriate for the requested entry type name and command.
    36 
    40 
       
    41     The caller takes ownership of the returned pointer.
       
    42 
       
    43     \param entryTypeName an entry type name.
       
    44     \param commandName a name of the command to be handled.
       
    45     \retval a pointer to the handler serving the entry type and command if found, NULL otherwise.
       
    46 */