Warning, file /education/kiten/app/wordtype.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 This file is part of Kiten, a KDE Japanese Reference Tool... 0003 SPDX-FileCopyrightText: 2001 Jason Katz-Brown <jason@katzbrown.com> 0004 SPDX-FileCopyrightText: 2006 Joseph Kerian <jkerian@gmail.com> 0005 SPDX-FileCopyrightText: 2006 Eric Kjeldergaard <kjelderg@gmail.com> 0006 0007 SPDX-License-Identifier: GPL-2.0-or-later 0008 */ 0009 0010 #ifndef WORDTYPE_H 0011 #define WORDTYPE_H 0012 0013 #include <KComboBox> 0014 0015 #include <QWidget> 0016 0017 class /* NO_EXPORT */ WordType : public KComboBox 0018 { 0019 Q_OBJECT 0020 0021 public: 0022 explicit WordType(QWidget *parent); 0023 }; 0024 0025 #endif