indexing
	description: "Curves capabilities (CC) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_CURVES_CAPABILITIES_CONSTANTS

feature -- Access

	cc_chord: INTEGER
			-- Supports chords

	cc_circles: INTEGER
			-- Supports circles

	cc_ellipses: INTEGER
			-- Supports ellipses

	cc_interiors: INTEGER
			-- Supports interiors

	cc_none: INTEGER
			-- Supports curves

	cc_pie: INTEGER
			-- Supports pie wedges

	cc_round_rect: INTEGER
			-- Supports rectangles with rounded corners

	cc_styled: INTEGER
			-- Supports styled borders

	cc_wide: INTEGER
			-- Supports wide borders

	cc_wide_styled: INTEGER
			-- Supports wide, styled borders
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_CURVES_CAPABILITIES_CONSTANTS