mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 15:16:07 +01:00
2018-07-20 Fred Gleason <fredg@paravelsystems.com>
* Added an 'IMPORTER_LINES' table to the database. * Incremented the database version to 295. * Refactored the log importer code to use the static 'IMPORTER_LINES' table.
This commit is contained in:
@@ -20,12 +20,13 @@
|
||||
|
||||
#include <rdgrid.h>
|
||||
|
||||
RDGrid::RDGrid(QString svc_name)
|
||||
RDGrid::RDGrid(QString svc_name,RDStation *station)
|
||||
{
|
||||
grid_name=svc_name;
|
||||
grid_station=station;
|
||||
for(int i=0;i<7;i++) {
|
||||
for(int j=0;j<24;j++) {
|
||||
grid_clocks[i][j]=new RDClock();
|
||||
grid_clocks[i][j]=new RDClock(grid_station);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user