Skip to content

Instantly share code, notes, and snippets.

@erikvalkering
Last active May 11, 2018 23:11
Show Gist options
  • Save erikvalkering/ab0598aecc471884fdd7aaa26211e23c to your computer and use it in GitHub Desktop.
Save erikvalkering/ab0598aecc471884fdd7aaa26211e23c to your computer and use it in GitHub Desktop.
class CarDealership
{
string name_;
vector<Car> showroom_;
Proxy<vector<Car>> soldCars_;
public:
auto &name() { return name_; }
auto &showroom() { return showroom_; }
auto &soldCars() { return soldCars_; }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment