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

h.ST_elist 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.CArrayOfStar;
import smetana.core.UnsupportedStarStruct;
import smetana.core.__struct__;

//typedef struct elist {
//edge_t **list;
//int size;
//} elist;

final public class ST_elist extends UnsupportedStarStruct {

	public int size;
	public CArrayOfStar list;



	@Override
	public void ___(__struct__ other) {
		ST_elist other2 = (ST_elist) other;
		this.size = other2.size;
		this.list = other2.list;
	}

	@Override
	public ST_elist copy() {
		final ST_elist result = new ST_elist();
		result.size = this.size;
		result.list = this.list;
		return result;
	}


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy