-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33b0722
commit f0078c4
Showing
4 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/*************************** | ||
@Author: Chunel | ||
@Contact: [email protected] | ||
@File: MyTemplateV2Node.h | ||
@Time: 2024/2/1 21:51 | ||
@Desc: | ||
***************************/ | ||
|
||
#ifndef CGRAPH_MYTEMPLATEV2NODE_H | ||
#define CGRAPH_MYTEMPLATEV2NODE_H | ||
|
||
#include "CGraph.h" | ||
|
||
template<int TID> | ||
class MyTemplateV2Node : public CGraph::GNode { | ||
public: | ||
CStatus run() override { | ||
CGraph::CGRAPH_ECHO("[MyTemplateV2Node] template id = [%d] ", TID); | ||
return CStatus(); | ||
} | ||
}; | ||
|
||
#endif //CGRAPH_MYTEMPLATEV2NODE_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters