contentstorage/caclient/src/cahandlerloader.cpp
changeset 98 d2f833ab7940
parent 96 5d243a69bdda
equal deleted inserted replaced
97:1e962b12a8db 98:d2f833ab7940
    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 */