why static keyword shouldn't be re typed in .cpp file? example
//this is .h file
class A{
public:
static void blabla();
};
//this is .cpp file
#include "Someheader"
static void A::blabla(){} //error????
I think I haven't fully understand the relation between the .h file and .cpp file, or is it just the case for static?