Warning, file /utilities/okteta/kasten/gui/io/bytearraystreamencoderconfigeditorfactoryfactory.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-2010 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 "bytearraystreamencoderconfigeditorfactoryfactory.hpp"
0010 
0011 // lib
0012 #include "streamencoder/sourcecode//bytearraysourcecodestreamencoderconfigeditorfactory.hpp"
0013 #include "streamencoder/values/bytearrayvaluesstreamencoderconfigeditorfactory.hpp"
0014 #include "streamencoder/base32/bytearraybase32streamencoderconfigeditorfactory.hpp"
0015 #include "streamencoder/uuencoding/bytearrayuuencodingstreamencoderconfigeditorfactory.hpp"
0016 #include "streamencoder/xxencoding/bytearrayxxencodingstreamencoderconfigeditorfactory.hpp"
0017 #include "streamencoder/srec/bytearraysrecstreamencoderconfigeditorfactory.hpp"
0018 #include "streamencoder/ihex/bytearrayihexstreamencoderconfigeditorfactory.hpp"
0019 //// NEWBYTEARRAYSTREAMENCODERCONFIGEDITORFACTORY(start)
0020 //// Here add the name of your header file of your streamencoder,
0021 //// e.g.
0022 //// #include "my_bytearraystreamencoder.hpp"
0023 //// NEWBYTEARRAYSTREAMENCODERCONFIGEDITORFACTORY(end)
0024 // Qt
0025 #include <QVector>
0026 
0027 namespace Kasten {
0028 
0029 QVector<AbstractModelStreamEncoderConfigEditorFactory*> ByteArrayStreamEncoderConfigEditorFactoryFactory::createFactorys()
0030 {
0031     const QVector<AbstractModelStreamEncoderConfigEditorFactory*> result {
0032         new ByteArraySourceCodeStreamEncoderConfigEditorFactory(),
0033         new ByteArrayValuesStreamEncoderConfigEditorFactory(),
0034         new ByteArrayBase32StreamEncoderConfigEditorFactory(),
0035         new ByteArraySRecStreamEncoderConfigEditorFactory(),
0036         new ByteArrayIHexStreamEncoderConfigEditorFactory(),
0037         new ByteArrayUuencodingStreamEncoderConfigEditorFactory(),
0038         new ByteArrayXxencodingStreamEncoderConfigEditorFactory(),
0039 //// NEWBYTEARRAYSTREAMENCODERCONFIGEDITORFACTORY(start)
0040 //// Here add the creation of an object of your streamencoder class and add it to the list,
0041 //// e.g.
0042 ////         new My_ByteArrayStreamEncoderConfigEditorFactory(),
0043 //// NEWBYTEARRAYSTREAMENCODERCONFIGEDITORFACTORY(end)
0044     };
0045     return result;
0046 }
0047 
0048 }