Removed or created shared header files used by print kit.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2091 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Preview.h
|
||||
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
||||
*/
|
||||
|
||||
//#define USE_PREVIEW_FOR_DEBUG
|
||||
|
||||
#ifdef USE_PREVIEW_FOR_DEBUG
|
||||
#ifndef __PREVIEW_H
|
||||
#define __PREVIEW_H
|
||||
|
||||
#include <Window.h>
|
||||
|
||||
class PreviewWindow : public BWindow {
|
||||
public:
|
||||
PreviewWindow(BRect, const char *, BBitmap *);
|
||||
virtual bool QuitRequested();
|
||||
int Go();
|
||||
|
||||
protected:
|
||||
PreviewWindow(const PreviewWindow &);
|
||||
PreviewWindow &operator = (const PreviewWindow &);
|
||||
|
||||
private:
|
||||
long __semaphore;
|
||||
};
|
||||
|
||||
#endif /* __PREVIEW_H */
|
||||
#endif /* USE_PREVIEW_FOR_DEBUG */
|
||||
Reference in New Issue
Block a user