enum os_template_actual_arg_kind { type_actual, literal_actual } ; os_template_actual_arg_kind get_kind() const;Returns an enumerator indicating whether the specified actual is a type or value (that is, literal).
operator const os_literal_template_actual_arg&() const;Provides for safe conversion to const os_literal_template_actual_arg&. If the specified os_template_actual_arg is not an os_literal_template_actual_arg, err_mop_illegal_cast is signaled.
operator const os_type_template_actual_arg&() const;Provides for safe conversion to const os_type_template_actual_arg&. If the specified os_template_actual_arg is not an os_type_template_actual_arg, err_mop_illegal_cast is signaled.
operator os_literal_template_actual_arg&();Provides for safe conversion to os_literal_template_actual_arg&. If the specified os_template_actual_arg is not an os_literal_template_actual_arg, err_mop_illegal_cast is signaled.
operator os_type_template_actual_arg&();Provides for safe conversion to const os_type_template_actual_arg&. If the specified os_template_actual_arg is not an os_type_template_actual_arg, err_mop_illegal_cast is signaled.
Updated: 03/31/98 17:25:09