Super Global Variables
There are times when a value needs to be shared. My solution was to create a new class in the project then use that class in all instances that would like to utilize that value. The first file would be the header. [codesyntax lang=”cpp”] #ifndef SD01_H #define SD01_H class sd01 { public: sd01(); virtual ~sd01(); […]