mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-18 08:31:16 +02:00
2022-10-06 Fred Gleason <fredg@paravelsystems.com>
* Changed the type of the 'MATRICES.PASSWORD` field in the database to 'text'. * Changed the type of the 'MATRICES.PASSWORD_2` field in the database to 'text'. * Applied Base64 encoding to the 'MATRICES.PASSWORD' field in the database. * Applied Base64 encoding to the 'MATRICES.PASSWORD_2' field in the database. * Incremented the database version to 362. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Abstract a Rivendell Switcher Matrix
|
||||
//
|
||||
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -21,9 +21,8 @@
|
||||
#ifndef RDMATRIX_H
|
||||
#define RDMATRIX_H
|
||||
|
||||
#include <qsqldatabase.h>
|
||||
#include <qdatetime.h>
|
||||
#include <qhostaddress.h>
|
||||
#include <QDateTime>
|
||||
#include <QHostAddress>
|
||||
|
||||
class RDMatrix
|
||||
{
|
||||
@@ -122,6 +121,7 @@ class RDMatrix
|
||||
QString GetEndpointName(int pointnum,const QString &table) const;
|
||||
QVariant GetRow(const QString ¶m) const;
|
||||
void SetRow(const QString ¶m,const QString &value) const;
|
||||
void SetRow(const QString ¶m,const QByteArray &value) const;
|
||||
void SetRow(const QString ¶m,int value) const;
|
||||
void SetRow(const QString ¶m,unsigned value) const;
|
||||
int mx_id;
|
||||
|
Reference in New Issue
Block a user