Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "Bee.h"
- #include <iostream>
- using namespace std;
- Bee::Bee(std::string name, std::string job = "") : mName{name}, mJob{job}
- {
- }
- void Bee::DoJob()
- {
- }
- void Bee::Eat()
- {
- cout << mName << " zostaĆa nakarmiona" << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement