Index: sources/storage/storageglobals.cpp =================================================================== diff -u -rd2035a8728794afeefaa244bf8d1597926d945f5 -r9cd1441e28dece7d70550e96b291d6184b3adc4b --- sources/storage/storageglobals.cpp (.../storageglobals.cpp) (revision d2035a8728794afeefaa244bf8d1597926d945f5) +++ sources/storage/storageglobals.cpp (.../storageglobals.cpp) (revision 9cd1441e28dece7d70550e96b291d6184b3adc4b) @@ -1,19 +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 * \author (last) Behrouz NematiPour - * \date (last) 07-May-2020 + * \date (last) 30-Jul-2020 * \author (original) Behrouz NematiPour * \date (original) 02-Jan-2020 - * + * */ +// Qt +// Project #include "storageglobals.h" +using namespace std; namespace Storage { @@ -22,5 +25,15 @@ const char *USB_File_System = "vfat"; // Log + 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/"; }