01: /**********************************************************************
02: * Copyright (c) 2003-2006 IBM Corp.
03: *
04: * All rights reserved. This program and the accompanying materials
05: * are made available under the terms of the Eclipse Public License v1.0
06: * which accompanies this distribution, and is available at
07: * http://www.eclipse.org/legal/epl-v10.html
08: *
09: * Contributors:
10: * IBM Corporation - initial API and implementation
11: **********************************************************************/package org.eclipse.swt.internal.cocoa;
12:
13: public class NSSize {
14: public float width;
15: public float height;
16: public static final int sizeof = 8;
17: }
|