forked from zenustech/zeno
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1c918a1
commit f7edca9
Showing
12 changed files
with
897 additions
and
2 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,20 @@ | ||
find_package(Qt5 REQUIRED COMPONENTS Widgets) | ||
|
||
file(GLOB_RECURSE source CONFIGURE_DEPENDS *.h *.cpp *.ui *.qrc) | ||
|
||
|
||
|
||
add_library(zenoio STATIC ${source}) | ||
|
||
set_property(TARGET zenoio PROPERTY AUTOUIC ON) | ||
set_property(TARGET zenoio PROPERTY AUTOMOC ON) | ||
set_property(TARGET zenoio PROPERTY AUTORCC ON) | ||
|
||
target_link_libraries(zenoio PUBLIC Qt5::Widgets glad zeno) | ||
target_include_directories(zenoio | ||
PUBLIC . | ||
PRIVATE ../3rdparty | ||
PRIVATE ../zenoui | ||
PRIVATE ${Qt5Widgets_PRIVATE_INCLUDE_DIRS} | ||
PRIVATE ../zeno/zeno | ||
) |
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 @@ | ||
#include "coreacceptor.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#ifndef __CORE_ACCEPTOR_H__ | ||
#define __CORE_ACCEPTOR_H__ | ||
|
||
|
||
|
||
#endif |
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,16 @@ | ||
#ifndef __IACCEPTOR_H__ | ||
#define __IACCEPTOR_H__ | ||
|
||
#include <model/modeldata.h> | ||
|
||
interface IAcceptor | ||
{ | ||
virtual void setDescriptors(const NODE_DESCS& nodesParams) = 0; | ||
virtual void BeginSubgraph(const QString& name) = 0; | ||
virtual void EndSubgraph() = 0; | ||
virtual void switchSubGraph(const QString& graphName) = 0; | ||
virtual void addNodeData() | ||
}; | ||
|
||
|
||
#endif |
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 @@ | ||
#include "modelacceptor.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#ifndef __MODEL_ACCEPTOR_H__ | ||
#define __MODEL_ACCEPTOR_H__ | ||
|
||
|
||
#endif |
Oops, something went wrong.