1/*
2 * Copyright 2002-2006, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
4 *
5 * Authors:
6 *		Michael Wilber
7 *		Axel D��rfler, axeld@pinc-software.de
8 */
9#ifndef BMP_VIEW_H
10#define BMP_VIEW_H
11
12
13#include "TranslatorSettings.h"
14
15#include <View.h>
16
17
18class BMPView : public BView {
19	public:
20		BMPView(const BRect &frame, const char *name, uint32 resizeMode,
21			uint32 flags, TranslatorSettings *settings);
22		virtual ~BMPView();
23
24	private:
25		TranslatorSettings *fSettings;
26};
27
28#endif	// BMP_VIEW_H
29