Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: eb397b7f0f77b1a670fcbc73dbc2efac8b14554d (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) 2015 Nathan Ridge.
 * 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
 *******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp;

import org.eclipse.cdt.core.dom.ast.IASTAlignmentSpecifier;
import org.eclipse.cdt.core.dom.parser.cpp.ICPPASTAttributeSpecifier;

/**
 * A C++ alignment-specifier.
 * 
 * In the C++ grammar, an alignment-specifier is an attribute-specifier.
 * 
 * @since 6.0
 */
public interface ICPPASTAlignmentSpecifier extends IASTAlignmentSpecifier, ICPPASTAttributeSpecifier {
	@Override
	public ICPPASTAlignmentSpecifier copy();
	
	@Override
	public ICPPASTAlignmentSpecifier copy(CopyStyle style);

}

Back to the top