Index: sources/storage/storageglobals.cpp =================================================================== diff -u -r56d00a82669a7a2c00ab90109a89dbec8db27527 -rf8321d4b6a5489f797122321a4821b4eeaaa50cb --- sources/storage/storageglobals.cpp (.../storageglobals.cpp) (revision 56d00a82669a7a2c00ab90109a89dbec8db27527) +++ sources/storage/storageglobals.cpp (.../storageglobals.cpp) (revision f8321d4b6a5489f797122321a4821b4eeaaa50cb) @@ -1,18 +1,22 @@ /*! - * + * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. - * copyright - * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, - * IN PART OR IN WHOLE, - * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. - * - * file storageglobals.cpp - * date 1/2/2020 - * author Behrouz NematiPour - * + * \copyright + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * + * \file storageglobals.cpp + * \author (last) Behrouz NematiPour + * \date (last) 30-Jul-2020 + * \author (original) Behrouz NematiPour + * \date (original) 02-Jan-2020 + * */ +// Qt +// Project #include "storageglobals.h" +using namespace std; namespace Storage { @@ -24,4 +28,12 @@ const char *Log_Base_Path_Name = "/media/sd-card/"; const char *Log_Base_Path_Name_Location = "/media/sd-card/log/"; const char *Log_File_Name = "denali.log"; + + // Treatment + const char *Treatment_Base_Path_Name = "/media/sd-card/treatment/"; + const char *Treatment_Profiles_Dir = "/media/sd-card/treatment/profiles/"; + const char *Treatment_Parameter_Ranges_Path = "/media/sd-card/treatment/denali.conf"; + const char *Treatment_Parameter_Ranges_Path_CSV = "/media/sd-card/treatment/denali.csv"; + + const char *SDCard_Base_Path_Name = "/media/sd-card/"; }