Changeset 71 in pacpusframework for trunk/include/Pacpus/kernel/ComponentManager.h


Ignore:
Timestamp:
01/10/13 15:07:34 (11 years ago)
Author:
Marek Kurdej
Message:

Added: more documentation.
doc/doxyfile.in: turned on BUILTIN_STL_SUPPORT in Doxygen.
Added: LICENSE-header.txt to be included in all source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/kernel/ComponentManager.h

    r67 r71  
    3131class ComponentBase;
    3232
     33/// @todo Documentation
    3334typedef QMap<QString, ComponentBase *> ComponentMap;
     35/// @todo Documentation
    3436typedef QMap<QString, ComponentFactoryBase *> FactoryMap;
    3537
    36 /** ComponentManager
    37  * @brief Singleton recording the components and managing them.
    38  */
     38/// Singleton recording the components and managing them.
    3939class ComponentManager
    4040{
     
    4343public:
    4444    /// @returns a pointer to the ComponentManager object
    45     /// @deprecated use getInstance()
     45    /// @deprecated Use getInstance()
    4646    PACPUS_DEPRECATED_MSG( static PACPUSLIB_API ComponentManager * create(), "use 'getInstance()'" );
    4747
    48     /** Get the singleton of the ComponentManager class.
    49      * @return Pointer to the ComponentManager singleton.
    50      */
     48    /// Returns an instance of the singleton ComponentManager class.
     49    /// @returns Pointer to the ComponentManager singleton.
    5150    static PACPUSLIB_API ComponentManager* getInstance();
    5251
    53     /** Destroy the ComponentManager singleton.
    54      * After this call, every pointer to the ComponentManager becomes invalid.
    55      */
     52    /// Destroys the ComponentManager singleton.
     53    ///
     54    /// After this call, every pointer to the ComponentManager becomes invalid.
    5655    static PACPUSLIB_API void destroy();
    5756
Note: See TracChangeset for help on using the changeset viewer.