kaddressbookprinter.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "kaddressbookprinter.h"
00025 #include "printing/printingwizard.h"
00026
00027 namespace KABPrinting {
00028
00029 PrintingWizard::PrintingWizard(KPrinter *printer,
00030 KABC::AddressBook* doc,
00031 const QStringList& selection,
00032 QWidget *parent, const char *name)
00033 : KWizard(parent, name),
00034 mPrinter(printer),
00035 mDocument(doc),
00036 mSelection(selection)
00037 {
00038
00039 }
00040
00041 PrintingWizard::~PrintingWizard()
00042 {
00043 }
00044
00045
00046
00047 PrintingWizard *producePrintingWizard(
00048 KPrinter *printer,
00049 KABC::AddressBook* doc,
00050 const QStringList& selection,
00051 QWidget *parent, const char *name)
00052 {
00053 return new PrintingWizardImpl(printer, doc, selection, parent, name);
00054 }
00055
00056 }
00057
This file is part of the documentation for kdelibs Version 3.1.4.