// point.h class Point { static const double PI; }; // point.cpp // Note that static keyword here is an error! const double Point::PI = 3.14159;