INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Contains information about the dimensions and color ", "format of a device-independent bitmap (DIB). ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_BITMAP_CORE_HEADER
inherit

WEL_STRUCTURE
rename
make as structure_make
end
creation

make,
make_by_pointer
feature {NONE}-- Initialization

make (a_width, a_height, a_planes, a_bit_count: INTEGER)
ensure
width_set: width = a_width
height_set: height = a_height
planes_set: planes = a_planes
bit_count_set: bit_count = a_bit_count
feature -- Access

width: INTEGER

height: INTEGER

planes: INTEGER

bit_count: INTEGER
feature -- Element change

set_width (a_width: INTEGER)
ensure
width_set: width = a_width

set_height (a_height: INTEGER)
ensure
height_set: height = a_height

set_planes (a_planes: INTEGER)
ensure
planes_set: planes = a_planes

set_bit_count (a_bit_count: INTEGER)
ensure
bit_count_set: bit_count = a_bit_count
feature -- Measurement

structure_size: INTEGER
-- Size to allocate (in bytes)
end -- class WEL_BITMAP_CORE_HEADER

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES