選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

24 行
339 B

  1. #pragma once
  2. #include "task.h"
  3. #include "current_task_lock.pre.h"
  4. namespace asyncpp
  5. {
  6. struct current_task_lock
  7. {
  8. public:
  9. /**
  10. * @brief Constructor.
  11. */
  12. current_task_lock(const task_ptr_s& p_task);
  13. /**
  14. * @brief Destructor.
  15. */
  16. ~current_task_lock();
  17. };
  18. }