Warning, file /utilities/okteta/kasten/gui/io/bytearraydatageneratorconfigeditorfactoryfactory.cpp 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 the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2009 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #include "bytearraydatageneratorconfigeditorfactoryfactory.hpp"
0010 
0011 // lib
0012 #include "generator/pattern/bytearraypatterngeneratorconfigeditorfactory.hpp"
0013 #include "generator/randomdata/bytearrayrandomdatageneratorconfigeditorfactory.hpp"
0014 //// NEWBYTEARRAYDATAGENERATORCONFIGEDITORFACTORY(start)
0015 //// Here add the name of your header file of your configeditorfactory,
0016 //// e.g.
0017 //// #include "my_bytearraydatageneratorconfigeditorfactory.hpp"
0018 //// NEWBYTEARRAYDATAGENERATORCONFIGEDITORFACTORY(end)
0019 // Qt
0020 #include <QVector>
0021 
0022 namespace Kasten {
0023 
0024 QVector<AbstractModelDataGeneratorConfigEditorFactory*> ByteArrayDataGeneratorConfigEditorFactoryFactory::createFactorys()
0025 {
0026     const QVector<AbstractModelDataGeneratorConfigEditorFactory*> result {
0027         new ByteArrayPatternGeneratorConfigEditorFactory(),
0028         new ByteArrayRandomDataGeneratorConfigEditorFactory(),
0029 //// NEWBYTEARRAYDATAGENERATORCONFIGEDITORFACTORY(start)
0030 //// Here add the creation of an object of your configeditorfactory class and add it to the list,
0031 //// e.g.
0032 ////         new My_ByteArrayDataGeneratorConfigEditorFactory();,
0033 //// NEWBYTEARRAYDATAGENERATORCONFIGEDITORFACTORY(end)
0034     };
0035 
0036     return result;
0037 }
0038 
0039 }