Skip to content

Commit

Permalink
Report streamable status for stages. (#2637)
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub authored and hobu committed Jul 29, 2019
1 parent 6633096 commit e23984e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/pdal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,15 @@ void App::outputDrivers()
StageExtensions& extensions = PluginManager<Stage>::extensions();
for (auto name : stages)
{
Stage *s = f.createStage(name);
std::string description = PluginManager<Stage>::description(name);
std::string link = PluginManager<Stage>::link(name);
j.push_back(
{ { "name", name },
{ "description", description },
{ "link", link },
{ "extensions", extensions.extensions(name) }
{ "extensions", extensions.extensions(name) },
{ "streamable", s->pipelineStreamable() }
}
);
}
Expand Down

0 comments on commit e23984e

Please sign in to comment.