Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: TaskManager.h
- Revision:
- 2:3cb7f5770feb
- Parent:
- 0:e381c3adaa04
diff -r e95b703c6ad7 -r 3cb7f5770feb TaskManager.h
--- a/TaskManager.h Fri Jan 14 20:04:13 2011 +0000
+++ b/TaskManager.h Fri Jan 14 20:24:54 2011 +0000
@@ -8,13 +8,23 @@
using namespace std;
-
+/**
+ * TaskManager class manages a list of running or suspended tasks.
+ */
class TaskManager
{
public:
+ /**
+ * Contructor.
+ */
TaskManager();
+
+ /**
+ * Start a task.
+ * @param _task The task object to start
+ */
void startTask(Task* _task);
private: