Commit 7bdc3afd authored by filatov's avatar filatov
Browse files

mw_geographicRegion_XXX fix names

parent c3f47078
......@@ -646,9 +646,9 @@ module LibItsSecurity_Templates {
* @param p_southeast Lower rigth corner
* @see Draft ETSI TS 103 097 V1.1.6 Clause 4.2.21 GeographicRegion
*/
template (present) GeographicRegion mw_geographicRegion_rectangle(
in template (present) TwoDLocation p_northwest := ?,
in template (present) TwoDLocation p_southeast := ?
template (present) GeographicRegion mw_geographicRegion_rectangular(
in template (present) TwoDLocation p_northwest := ?,
in template (present) TwoDLocation p_southeast := ?
) := {
region_type := e_rectangle,
region := {
......@@ -666,8 +666,8 @@ module LibItsSecurity_Templates {
* @param p_polygonal_region Polygonial region description
* @see Draft ETSI TS 103 097 V1.1.6 Clause 4.2.21 GeographicRegion
*/
template (present) GeographicRegion mw_geographicRegion_polygonial(
in template (present) PolygonalRegion p_polygonal_region := ?
template (present) GeographicRegion mw_geographicRegion_polygonal(
in template (present) PolygonalRegion p_polygonal_region := ?
) := {
region_type := e_polygon,
region := {
......@@ -680,8 +680,8 @@ module LibItsSecurity_Templates {
* @param p_id_region Indentified region
* @see Draft ETSI TS 103 097 V1.1.6 Clause 4.2.21 GeographicRegion
*/
template (present) GeographicRegion mw_geographicRegion_identifiedRegion(
in template (present) IdentifiedRegion p_id_region := ?
template (present) GeographicRegion mw_geographicRegion_identified(
in template (present) IdentifiedRegion p_id_region := ?
) := {
region_type := e_id,
region := {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment