summaryrefslogtreecommitdiff
path: root/ddl/out/TestData.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ddl/out/TestData.hpp')
-rw-r--r--ddl/out/TestData.hpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/ddl/out/TestData.hpp b/ddl/out/TestData.hpp
index 08b6020..39aa824 100644
--- a/ddl/out/TestData.hpp
+++ b/ddl/out/TestData.hpp
@@ -1,5 +1,5 @@
1// generated file, do not modify! 1// generated file, do not modify!
2// 2016-02-08T13:33:24.109009000000Z 2// 2016-02-12T16:05:13.383716000000Z
3 3
4#ifndef HEADER_TestData_H 4#ifndef HEADER_TestData_H
5#define HEADER_TestData_H 5#define HEADER_TestData_H
@@ -55,6 +55,20 @@ namespace data {
55 Scene() { tag = tag::Scene; } 55 Scene() { tag = tag::Scene; }
56 }; 56 };
57} 57}
58class PipelineInfo {
59 public:
60 enum class tag {
61 PipelineInfo
62 } tag;
63};
64namespace data {
65 class PipelineInfo : public ::PipelineInfo {
66 public:
67 String pipelineName;
68 std::shared_ptr<::Pipeline> pipeline;
69 PipelineInfo() { tag = tag::PipelineInfo; }
70 };
71}
58class RenderJob { 72class RenderJob {
59 public: 73 public:
60 enum class tag { 74 enum class tag {
@@ -68,7 +82,7 @@ namespace data {
68 std::vector<String> textures; 82 std::vector<String> textures;
69 std::shared_ptr<::PipelineSchema> schema; 83 std::shared_ptr<::PipelineSchema> schema;
70 std::vector<std::shared_ptr<::Scene>> scenes; 84 std::vector<std::shared_ptr<::Scene>> scenes;
71 std::vector<std::shared_ptr<::Pipeline>> pipelines; 85 std::vector<std::shared_ptr<::PipelineInfo>> pipelines;
72 RenderJob() { tag = tag::RenderJob; } 86 RenderJob() { tag = tag::RenderJob; }
73 }; 87 };
74} 88}