/* * Copyright (c) 2014 QNX Software Systems 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 */ package org.eclipse.cdt.internal.qt.core.pdom; import org.eclipse.cdt.core.dom.ast.IASTName; import org.eclipse.core.runtime.CoreException; public class QtPDOMQGadget extends AbstractQtPDOMClass { protected QtPDOMQGadget(QtPDOMLinkage linkage, long record) throws CoreException { super(linkage, record); } public QtPDOMQGadget(QtPDOMLinkage linkage, IASTName qtName, IASTName cppName) throws CoreException { super(linkage, qtName, cppName); } @Override public int getNodeType() { return QtPDOMNodeType.QGadget.Type; } }