Advertisement
luckrk

static example

Jan 17th, 2018
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. const Date& default_date()
  2. {
  3.     static const Date dd(1970,1,1);  //initialize dd first time we get here
  4.     return dd;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement