blob: 6b6d1c000c2e495a14d5ec370f71612a2d30e454 [file] [log] [blame]
package org.eclipse.papyrus.designer.languages.cpp.reverse.reverse;
import org.eclipse.cdt.core.model.ICElement;
/**
* Qualified name information. In addition to the resolved qualified name, it contains
* the translation unit, in which the name has been found.
*
*/
public class QNInfo {
String qName;
ICElement source;
}