Last active
May 11, 2018 23:11
-
-
Save erikvalkering/ab0598aecc471884fdd7aaa26211e23c to your computer and use it in GitHub Desktop.
This file contains 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
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