Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / preferences / printers / TestPageView.h
blob769416a150af964f68b9ee57f2f24dbbba5ddf5c
1 /*
2 * Copyright 2011, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Philippe Houdoin
7 */
8 #ifndef _PRINTERS_TESTPAGEVIEW_H
9 #define _PRINTERS_TESTPAGEVIEW_H
12 #include <View.h>
14 class PrinterItem;
16 class TestPageView : public BView {
17 public:
18 TestPageView(BRect rect, PrinterItem* printer);
20 void AttachedToWindow();
21 void DrawAfterChildren(BRect rect);
23 private:
24 PrinterItem* fPrinter;
27 #endif