Groom  1.1
BTS SNIR LaSalle Avignon 2021
Référence du fichier Evenement.cpp
#include "Evenement.h"
#include <QDateTime>
#include <QDebug>

Aller au code source de ce fichier.

Fonctions

QDebug operator<< (QDebug dbg, const Evenement &e)
 

Documentation des fonctions

◆ operator<<()

QDebug operator<< ( QDebug  dbg,
const Evenement e 
)

Définition à la ligne 121 du fichier Evenement.cpp.

122 {
123  dbg.nospace() << "Evenement(";
124  foreach (const QString &key, e.getNomsAttributs())
125  {
126  dbg.nospace() << " " << key << " : " << e.getAttribut(key) << " ";
127  }
128  dbg.nospace() << ")";
129 
130  return dbg.space();
131 }

Références Evenement::getAttribut(), et Evenement::getNomsAttributs().

Evenement::getAttribut
QString getAttribut(QString nomAttribut) const
Definition: Evenement.cpp:65
Evenement::getNomsAttributs
QList< QString > getNomsAttributs() const
Definition: Evenement.cpp:60