All Downloads are FREE. Search and download functionalities are using the official Maven repository.

h.ST_cinfo_t Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package h;

import smetana.core.CArray;
import smetana.core.UnsupportedStarStruct;
import smetana.core.__struct__;

final public class ST_cinfo_t extends UnsupportedStarStruct {

	public final ST_boxf bb = new ST_boxf();
	public CArray objp;



	
	@Override
	public void ___(__struct__ value) {
		final ST_cinfo_t other = (ST_cinfo_t) value;
		this.bb.___(other.bb);
		this.objp = other.objp;
	}


	@Override
	public ST_cinfo_t copy() {
		final ST_cinfo_t result = new ST_cinfo_t();
		result.bb.___((__struct__) this.bb);
		result.objp = this.objp;
		return result;
	}




}

// typedef struct {
// boxf bb;
// object_t* objp;
// } cinfo_t;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy