blob: 3e8d0ede0b1d439f55d1dfe8d69409eac4a116a2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Wind River Systems, Inc. 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:
* Lidia Popescu - [536255] initial API and implementation. Extension point for open call hierarchy view
*******************************************************************************/
package org.eclipse.cdt.ui;
import org.eclipse.cdt.core.model.ICElement;
/**
* The Call Hierarchy Extension Node
* @since 6.4
*/
public interface ICHENode {
ICElement getRepresentedDeclaration();
}