schedulator: only do weekdays, not weekends.
[wvapps.git] / wvprint / localqueue.h
blob953360f50b83f13b3159546e7940b1fc2fdaf3a9
1 /* -*- Mode: C++ -*-
3 * Worldvisions Weaver Software:
4 * Copyright (C) 1997-2003 Net Integration Technologies, Inc.
6 * This is the PrintQueueLocal class that implements the queue
7 * behaviors specific to a local printer.
8 */
9 #ifndef __LOCALQUEUE_H
10 #define __LOCALQUEUE_H
12 #include "queue.h"
14 class PrintQueueLocal: public PrintQueue
16 private:
17 WvString device;
18 void callback_filter(bool ok, void* userdata);
19 protected:
20 virtual void print_job(PrintJob*);
21 public:
22 PrintQueueLocal(WvStringParm _name, UniConf& _cfg, WvLog& _log);
23 virtual void foreach(const PrintJobInfoCallback&);
26 #endif /* __LOCALQUEUE_H */