File indexing completed on 2024-12-22 03:46:48
0001 /* 0002 This file is part of the KTextTemplate library 0003 0004 SPDX-FileCopyrightText: 2010 Stephen Kelly <steveire@gmail.com> 0005 0006 SPDX-License-Identifier: LGPL-2.1-or-later 0007 0008 */ 0009 0010 #ifndef CODEGENTABLEVIEW_H 0011 #define CODEGENTABLEVIEW_H 0012 0013 #include <QTableView> 0014 0015 class MethodTableView : public QTableView 0016 { 0017 Q_OBJECT 0018 public: 0019 MethodTableView(QWidget *parent = 0); 0020 }; 0021 0022 class ArgsTableView : public QTableView 0023 { 0024 Q_OBJECT 0025 public: 0026 ArgsTableView(QWidget *parent = 0); 0027 }; 0028 0029 #endif