blob: 8d73e9319ef8ffb2df54a941339c76568d12e782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef _ASURA_IO_BATCH_TASK_H_
#define _ASURA_IO_BATCH_TASK_H_
#include "IOTask.h"
namespace AsuraEngine
{
namespace FileSystem
{
///
/// дһύһtableδؽ
///
class IOBatchTask ASURA_FINAL : public AEThreading::Task
{
public:
private:
///
/// ÿһĽṹ£
/// { path = "", }
///
Luax::LuaxMemberRef m_Tasks;
};
}
}
#endif
|