25 lines
632 B
C++
25 lines
632 B
C++
#ifndef GENERATEREPORT_AUTOMATICALLYSAVEREPORT_H
|
|
#define GENERATEREPORT_AUTOMATICALLYSAVEREPORT_H
|
|
|
|
#include <com/sun/star/uno/Reference.hxx>
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
using namespace com::sun::star::uno;
|
|
using namespace com::sun::star::frame;
|
|
|
|
namespace GenerateReport
|
|
{
|
|
class AutomaticallySaveReport
|
|
{
|
|
public:
|
|
AutomaticallySaveReport();
|
|
//~AutomaticallySaveReport() = default;
|
|
void AutomaticallySaveReportExcute();
|
|
void ScheduledSaveReport();
|
|
private:
|
|
};
|
|
|
|
}
|
|
|
|
#endif // GENERATEREPORT_AUTOMATICALLYSAVEREPORT_H
|