/******************************************************************************* * Copyright (c) 2004, 2011 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: * John Camelon (IBM) - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.core.dom.ast.cpp; import org.eclipse.cdt.core.dom.ast.IASTLiteralExpression; /** * C++ adds additional literal types to primary expression. * * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */ public interface ICPPASTLiteralExpression extends IASTLiteralExpression { /** * <code>lk_this</code> represents the 'this' keyword. */ public static final int lk_this = IASTLiteralExpression.lk_this; /** * <code>lk_true</code> represents the 'true' keyword. */ public static final int lk_true = IASTLiteralExpression.lk_true; /** * <code>lk_false</code> represents the 'false' keyword. */ public static final int lk_false = IASTLiteralExpression.lk_false; /** * @deprecated All constants must be defined in {@link IASTLiteralExpression}. */ @Deprecated public static final int lk_last = lk_false; /** * @since 5.1 */ public ICPPASTLiteralExpression copy(); /** * @since 5.3 */ public ICPPASTLiteralExpression copy(CopyStyle style); }