zserio.extension.cpp.RuntimeFunctionTemplateData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zserio Show documentation
Show all versions of zserio Show documentation
Zserio Serialization Framework Compiler
The newest version!
package zserio.extension.cpp;
/**
* Template data for generating of calls to Zserio runtime (e.g. for reading and writing of built-in types).
*/
public final class RuntimeFunctionTemplateData
{
RuntimeFunctionTemplateData(String suffix)
{
this(suffix, null);
}
RuntimeFunctionTemplateData(String suffix, String arg)
{
this.suffix = suffix;
this.arg = arg;
}
public String getSuffix()
{
return suffix;
}
public String getArg()
{
return arg;
}
private final String suffix;
private final String arg;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy