25 lines
555 B
C
25 lines
555 B
C
|
|
#ifndef GENERATEREPORT_CLOSECURRENTREPORT_H
|
|||
|
|
#define GENERATEREPORT_CLOSECURRENTREPORT_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 CloseCurrentReport
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CloseCurrentReport();
|
|||
|
|
//~CloseCurrentReport() = default;
|
|||
|
|
void closeReportExcute();
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endif // GENERATEREPORT_CLOSECURRENTREPORT_H
|