Skip to content

Instantly share code, notes, and snippets.

@calindotgabriel
Created June 14, 2015 13:02
Show Gist options
  • Save calindotgabriel/68e1913d7128b6fb52fe to your computer and use it in GitHub Desktop.
Save calindotgabriel/68e1913d7128b6fb52fe to your computer and use it in GitHub Desktop.
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