Created
June 14, 2015 13:02
-
-
Save calindotgabriel/68e1913d7128b6fb52fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ProductRepo::ProductRepo(std::string fIdName, | |
std::string fNameQty) | |
: fIdName(fIdName), fNameQty(fNameQty) | |
{ | |
std::thread load(&ProductRepo::_load, this); | |
load.join(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment