blob: 8b3ced44d52777374baf75107a0e088c52df05c8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.cocoa;
public class NSSize {
/** @field cast=(CGFloat) */
public double width;
/** @field cast=(CGFloat) */
public double height;
public static final int sizeof = OS.NSSize_sizeof();
@Override
public String toString() {
return "NSSize{" + width + "," + height + "}";
}
}