Skip to content

Instantly share code, notes, and snippets.

@berkeley-db
Created January 24, 2011 21:48
Show Gist options
  • Save berkeley-db/794027 to your computer and use it in GitHub Desktop.
Save berkeley-db/794027 to your computer and use it in GitHub Desktop.
class Car {
size_t length, width, height;
Engine *engine;
string model;
// Member functions follow ...
};
class Engine {
size_t horse_power;
char num_cylinder;
float displacement;
// Member functions follow ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment