Changeset 14 in pacpusframework
- Timestamp:
- Jan 8, 2013, 1:16:33 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentManager.h
r13 r14 66 66 * @return Number of components loaded by the manager. 67 67 */ 68 std::size_t PACPUSLIB_APIloadComponents(QString file);68 PACPUSLIB_API std::size_t loadComponents(QString file); 69 69 70 70 /** Start all the components 71 71 * @return True if all the component has been started, otherwise false. 72 72 */ 73 int PACPUSLIB_APIstart();73 PACPUSLIB_API int 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 int PACPUSLIB_APIstart(QString component);79 PACPUSLIB_API int start(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 int PACPUSLIB_APIstop();84 PACPUSLIB_API int 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 int PACPUSLIB_APIstop(QString component);90 PACPUSLIB_API int stop(QString component); 91 91 92 92 /** Get a pointer to the component referred by @em name. … … 105 105 * @return True if the plugin has been loaded, otherwise false. 106 106 */ 107 bool PACPUSLIB_APIloadPlugin(QString filename);107 PACPUSLIB_API bool loadPlugin(QString filename); 108 108 109 109 private:
Note:
See TracChangeset
for help on using the changeset viewer.