Skip to content
Snippets Groups Projects
Commit 44877a21 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

IMprove file structure view (marked-up comments for RStudio)

parent 58d603ec
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ InsuranceContract.Values = list(
premiumComposition = NULL
);
# InsuranceContract.ParameterDefault #######################################
#' Default parameters for the InsuranceContract class. A new contract will be
#' pre-filled with these values, and values passed in the constructor (or with
#' other setter functions) will override these values.
......
......@@ -10,6 +10,7 @@ NULL
TariffTypeEnum = objectProperties::setSingleEnum("TariffType", levels = c("annuity", "wholelife", "endowment", "pureendowment", "terme-fix", "dread-disease", "endowment + dread-disease"))
############ Class InsuranceTarif ###########################################
#' Base class for Insurance Tarifs, providing calculation functions to the contract
#'
#' This is a base class for holding contract-independent values and
......@@ -22,6 +23,8 @@ TariffTypeEnum = objectProperties::setSingleEnum("TariffType", levels = c("annui
#' @export
InsuranceTarif = R6Class(
"InsuranceTarif",
######################### PUBLIC METHODS ##################################
public = list(
name = "Insurance Contract Type",
tarif = NULL,
......
......@@ -56,7 +56,7 @@ Tarif.Bsp = InsuranceTarif$new(
);
################################################################### #
# EXAMPLE CONTRACT ####
# Example contract with dynamiocs ####
################################################################### #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment