tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / printers / SpoolFolder.h
blobb3b7a662de9f71e86913d491fc5cd36e9fa5a032
1 /*
2 * Copyright 2001-2010, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Michael Pfeiffer
7 */
8 #ifndef _SPOOL_FOLDER_H
9 #define _SPOOL_FOLDER_H
12 #include "Jobs.h"
15 class PrintersWindow;
16 class PrinterItem;
19 class SpoolFolder : public Folder {
20 public:
21 SpoolFolder(PrintersWindow* window,
22 PrinterItem* item,
23 const BDirectory& spoolDir);
24 PrinterItem* Item() const { return fItem; }
26 protected:
27 void Notify(Job* job, int kind);
29 PrintersWindow* fWindow;
30 PrinterItem* fItem;
34 #endif // _SPOOL_FOLDER_H