#include
Using namespace std;
class Account {private: static double _interestRate; double _amount; string _owner; public: static void raiseInterest (double incr); static double interest () {return _interestRate;} double amount () {return _amount;}};
Double Account :: _ Interestrate;
Inline Void Account :: RaiseInterest (Double INCR) {_INTERESTRATE = InCr;
Void main () {double (* ptr_temp) () = & access :: interest;}