mirror of https://gitee.com/cxasm/notepad--.git
fix actor error
This commit is contained in:
parent
4ab86338f1
commit
2ad291e975
|
@ -1,4 +1,6 @@
|
||||||
|
#ifndef _ACTOR_H_
|
||||||
|
#define _ACTOR_H_
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@ -107,3 +109,5 @@ private:
|
||||||
*/
|
*/
|
||||||
FunctionWapper m_invokeFunctionWapper;
|
FunctionWapper m_invokeFunctionWapper;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -16,8 +16,9 @@
|
||||||
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
#ifndef _ACTOR_H_
|
||||||
|
#define _ACTOR_H_
|
||||||
|
|
||||||
#pragma once
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@ -120,3 +121,5 @@ private:
|
||||||
*/
|
*/
|
||||||
FunctionWapper m_invokeFunctionWapper;
|
FunctionWapper m_invokeFunctionWapper;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
** along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
|
||||||
#include "actorprocessor.h"
|
#include "actorprocessor.h"
|
||||||
ActorProcessor::ActorProcessor():
|
ActorProcessor::ActorProcessor():
|
||||||
m_actorMap(new std::unordered_map<std::string, Actor*>)
|
m_actorMap(new std::unordered_map<std::string, Actor*>)
|
||||||
|
|
Loading…
Reference in New Issue