1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/*
SPDX-FileCopyrightText: 2013 Vlas Puhov <vlas.puhov@mail.ru>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONVERTERS_H
#define CONVERTERS_H
#include "registercontroller.h"
namespace KDevMI {
class Converters
{
public:
static QString formatToString(Format format);
static Format stringToFormat(const QString& format);
static Mode stringToMode(const QString& mode);
static QString modeToString(Mode mode);
};
} // end of namespace KDevMI
#endif // CONVERTERS_H
|