/*
* Copyright (C) 2010 Ixonos Plc.
- * Copyright (C) 2011 Philipp Spitzer, gregor herrmann
+ * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann, Stefan Stahl
*
* This file is part of ConfClerk.
*
#include <QVector>
#include <QStringList>
-#include <ormrecord.h>
+#include "ormrecord.h"
class Conference : public OrmRecord<Conference>
{
int timeslotDuration() const { return value("timeslot_duration").toInt(); } // in seconds
bool isActive() const { return value("active").toBool(); }
QString url() const { return stringFromNullable(value("url")); }
- QString map() const { return stringFromNullable(value("map")); }
#if 0
void setId(int id) { setValue("id", id); }