Changeset 14 in pacpusframework


Ignore:
Timestamp:
01/08/13 01:16:33 (11 years ago)
Author:
sgosseli
Message:

Harmonization of the PACPUSLIB_API macros.

File:
1 edited

Legend:

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

    r13 r14  
    6666     * @return Number of components loaded by the manager.
    6767     */
    68     std::size_t PACPUSLIB_API loadComponents(QString file);
     68    PACPUSLIB_API std::size_t loadComponents(QString file);
    6969
    7070    /** Start all the components
    7171     * @return True if all the component has been started, otherwise false.
    7272     */
    73     int PACPUSLIB_API start();
     73    PACPUSLIB_API int start();
    7474
    7575    /** Start only the component passed in parameter.
     
    7777     * @return True if the component exists and has been started, otherwise false.
    7878     */
    79     int PACPUSLIB_API start(QString component);
     79    PACPUSLIB_API int start(QString component);
    8080
    8181    /** Stop all the components
    8282     * @return True if all the component has been stopped, otherwise false.
    8383     */
    84     int PACPUSLIB_API stop();
     84    PACPUSLIB_API int stop();
    8585
    8686    /** Stop only the component passed in parameter.
     
    8888     * @return True if the component has been stopped, otherwise false.
    8989     */
    90     int PACPUSLIB_API stop(QString component);
     90    PACPUSLIB_API int stop(QString component);
    9191
    9292    /** Get a pointer to the component referred by @em name.
     
    105105     * @return True if the plugin has been loaded, otherwise false.
    106106     */
    107     bool PACPUSLIB_API loadPlugin(QString filename);
     107    PACPUSLIB_API bool loadPlugin(QString filename);
    108108
    109109private:
Note: See TracChangeset for help on using the changeset viewer.