open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,25 @@
/**
@file JCIThreadMgr.h
@brief
@author guo
@version 1.0
@date 2016_5_19
*/
#ifndef __JCIThreadMgr_H__
#define __JCIThreadMgr_H__
#include <functional>
namespace laya {
class IConchThreadCmdMgr {
public:
virtual void postToJS(const std::function<void(void)>& f) = 0;
virtual void postToDownload(const std::function<void(void)>& f)=0;
virtual void postToDecoder(const std::function<void(void)>& f)=0;
};
}
#endif //__JCIThreadMgr_H__