class CAMEL_CASE_COUNTRY
COUNTRY that can be initialized with external CamelCase names
note
description: "${COUNTRY} that can be initialized with external CamelCase names"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2024-08-27 9:28:36 GMT (Tuesday 27th August 2024)"
revision: "14"
class
CAMEL_CASE_COUNTRY
inherit
COUNTRY
rename
eiffel_naming as camel_case
redefine
camel_case
end
create
make, make_from_table
feature {NONE} -- Implementation
camel_case: EL_NAME_TRANSLATER
do
Result := camel_case_translater ({EL_CASE}.Default)
end
end