h.ST_point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package h;
import smetana.core.UnsupportedStarStruct;
import smetana.core.__struct__;
final public class ST_point extends UnsupportedStarStruct {
public int x, y;
@Override
public __struct__ copy() {
final ST_point result = new ST_point();
result.x = this.x;
result.y = this.y;
return result;
}
@Override
public void ___(__struct__ other) {
ST_point this2 = (ST_point) other;
this.x = this2.x;
this.y = this2.y;
}
}
// typedef struct { int x, y; } point;