1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-05 16:44:21 +03:00
inform7/inbuild/supervisor-module/Chapter 5/Pipeline Services.w

18 lines
422 B
OpenEdge ABL
Raw Normal View History

2020-02-10 02:10:58 +02:00
[Pipelines::] Pipeline Services.
2020-03-31 02:17:21 +03:00
Behaviour specific to copies of the pipeline genre.
2020-02-10 02:10:58 +02:00
@ =
typedef struct inform_pipeline {
struct inbuild_copy *as_copy;
2020-02-19 22:48:30 +02:00
struct semantic_version_number version;
2020-02-10 02:10:58 +02:00
MEMORY_MANAGEMENT
} inform_pipeline;
inform_pipeline *Pipelines::new_ip(text_stream *name, filename *F) {
inform_pipeline *T = CREATE(inform_pipeline);
T->as_copy = NULL;
T->version = VersionNumbers::null();
return T;
}