I have a problem where I have declared a static
string
vector
in the .h
file inside a class
,
.h
file
static std::vector<std::string> VHDSigBuffer;
How to use this vector
in my class
function Implementations in cpp
file?