note
	description: "[
		Constants used by interpeter
	]"
	author: ""
	date: "$Date: 2013-05-20 23:15:17 +0000 (Mon, 20 May 2013) $"
	revision: "$Revision: 92557 $"

class 
	ITP_SHARED_CONSTANTS

create 
	default_create

feature -- AutoTest socket request flags

	Start_request_flag: NATURAL_8 = 1
			-- Flag for "start" request

	Quit_request_flag: NATURAL_8 = 2
			-- Flag for "quit" request

	Execute_request_flag: NATURAL_8 = 3
			-- Flag for "execute" request

	Type_request_flag: NATURAL_8 = 4
			-- Flag for "type" request
	
feature -- AutoTest socket reponse flags

	Normal_response_flag: NATURAL_8 = 1
			-- Flag to indicate a normal response

	Invariant_violation_on_entry_response_flag: NATURAL_8 = 2
			-- Flag to indicate that there is a class invariant
			-- violation on entry of testee feature

	Internal_error_respones_flag: NATURAL_8 = 3
			-- Flag to indicate that there is an internal error
			-- in the interpreter.
	
note
	copyright: "Copyright (c) 1984-2009, Eiffel Software and others"
	license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
	source: "[
		Eiffel Software
		5949 Hollister Ave., Goleta, CA 93117 USA
		Telephone 805-685-1006, Fax 805-685-6869
		Website http://www.eiffel.com
		Customer support http://support.eiffel.com
	]"

end -- class ITP_SHARED_CONSTANTS

Generated by ISE EiffelStudio