2009-11-12 Jeffrey Stedfast <fejj@novell.com>
[moon.git] / src / fontstyle.h
blob13a4cf55f28cfb2c7f1d511fe1a6762b39976b09
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * fontstyle.h:
5 * Contact:
6 * Moonlight List (moonlight-list@lists.ximian.com)
8 * Copyright 2009 Novell, Inc. (http://www.novell.com)
10 * See the LICENSE file included with the distribution for details.
13 #ifndef __FONT_STYLE_H__
14 #define __FONT_STYLE_H__
16 /* @IncludeInKinds */
17 struct FontStyle {
18 FontStyles style;
20 FontStyle (FontStyles style)
22 this->style = style;
25 bool operator== (const FontStyle &v) const
27 return v.style == style;
30 bool operator!= (const FontStyle &v) const
32 return v.style != style;
36 #endif /* __FONT_STYLE_H__ */