001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005
006 package org.bridj.cpp.mfc;
007
008 import org.bridj.StructObject;
009 import org.bridj.ann.Field;
010
011 /**
012 *
013 * @author Olivier
014 */
015 public class CPoint extends StructObject {
016 @Field(0)
017 public native int x();
018 @Field(0)
019 public native void x(int x);
020 @Field(0)
021 public native int y();
022 @Field(0)
023 public native void y(int y);
024 }