1/*
2 * Copyright 2006, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Mikael Konradson, mikael.konradson@gmail.com
7 */
8#ifndef FONT_DEMO_H
9#define FONT_DEMO_H
10
11
12#include <Application.h>
13
14
15class FontDemo : public BApplication {
16	public:
17		FontDemo();
18		virtual ~FontDemo();
19
20		virtual void ReadyToRun();
21};
22
23#endif	// FONT_DEMO_H
24