Changeset 48 in pacpusframework
- Timestamp:
- Jan 9, 2013, 12:48:47 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentManager.h
r31 r48 71 71 * @return True if all the component has been started, otherwise false. 72 72 */ 73 PACPUSLIB_API intstart();73 PACPUSLIB_API bool start(); 74 74 75 75 /** Start only the component passed in parameter. … … 77 77 * @return True if the component exists and has been started, otherwise false. 78 78 */ 79 PACPUSLIB_API intstart(const QString& component);79 PACPUSLIB_API bool start(const QString& component); 80 80 81 81 /** Stop all the components 82 82 * @return True if all the component has been stopped, otherwise false. 83 83 */ 84 PACPUSLIB_API intstop();84 PACPUSLIB_API bool stop(); 85 85 86 86 /** Stop only the component passed in parameter. … … 88 88 * @return True if the component has been stopped, otherwise false. 89 89 */ 90 PACPUSLIB_API intstop(const QString& component);90 PACPUSLIB_API bool stop(const QString& component); 91 91 92 92 /** Get a pointer to the component referred by @em name. … … 99 99 * @return List of all the component's name. 100 100 */ 101 PACPUSLIB_API QStringList getAllComponentsName() ;101 PACPUSLIB_API QStringList getAllComponentsName() const; 102 102 103 103 /** Load a new plugin from the file filename (it may be a .so/.dll file)
Note:
See TracChangeset
for help on using the changeset viewer.