Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c827b5b4ae03d3eab7e83f277fbeba660d51cb84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

/*
 * Created on Dec 8, 2004
 */
package org.eclipse.cdt.core.dom.ast.gnu.cpp;

import org.eclipse.cdt.core.dom.ast.IPointerType;

/**
 * @author aniefer
 */
public interface IGPPPointerType extends IPointerType {
	/**
	 * is this a restrict pointer
	 */
	boolean isRestrict();
}

Back to the top