Searched defs:PipelineExecutableInternalRepresentation (Results 1 – 1 of 1) sorted by relevance
308 struct PipelineExecutableInternalRepresentation struct310 …PipelineExecutableInternalRepresentation (std::string name_, std::string description_, bool isText… in PipelineExecutableInternalRepresentation() function323 const std::string name;324 const std::string description;326 bool isText (void) const { return m_isText; } in isText()327 const std::string& getText (void) const { DE_ASSERT(isText()); return m_text; } in getText()328 const std::vector<uint8_t>& getBytes (void) const { DE_ASSERT(!isText()); return m_bytes; } in getBytes()331 const bool m_isText;332 std::string m_text;333 std::vector<uint8_t> m_bytes;