1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
6 * Moonlight List (moonlight-list@lists.ximian.com)
8 * Copyright 2007 Novell, Inc. (http://www.novell.com)
10 * See the LICENSE file included with the distribution for details.
13 #ifndef __FONT_FAMILY_H__
14 #define __FONT_FAMILY_H__
23 FontFamily (const char *source
)
25 this->source
= g_strdup (source
);
33 bool operator== (const FontFamily
&v
) const
35 return strcmp (v
.source
, source
) == 0;
38 bool operator!= (const FontFamily
&v
) const
40 return strcmp (v
.source
, source
) != 0;
44 #endif /* __FONT_FAMILY_H__ */