OSCAR-code/sleepyhead/reports.h
Sean Stangl 012e9fd314 Auto-convert the main source directory with astyle. "The Huge Patch"
The files daily.cpp and daily.h are omitted, pending some other cleanup patches landing first.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
2014-04-17 16:15:28 +10:00

31 lines
978 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Reports Header
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#ifndef REPORTS_H
#define REPORTS_H
#include "Graphs/gGraphView.h"
class Report
{
public:
Report();
/*! \fn void PrintReport gGraphView *gv,QString name, QDate date=QDate::currentDate());
\brief Prepares a report using gGraphView object, and sends to a created QPrinter object
\param gGraphView *gv GraphView Object containing which graph set to print
\param QString name Report Title
\param QDate date
*/
static void PrintReport(gGraphView *gv, QString name, QDate date = QDate::currentDate());
};
#endif // REPORTS_H