blob: 3cea4d8959e2cb2c5789064c2154b8d4e30888b2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2016 Google, Inc 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:
* Sergey Prigogin (Google) - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;
/**
* Represents a function whose executing may be simulated at parsing time.
*/
public interface ICPPComputableFunction {
/**
* {@code null}.
* For a constexpr function returns the ICPPExecution for its body. Otherwise returns
*/
public ICPPExecution getFunctionBodyExecution();
}