Advertisement
Cassimus

queen.cpp

May 14th, 2025
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include "Queen.h"
  2. #include <iostream>
  3.  
  4. using namespace std;
  5. Queen::Queen(string name, string job):Bee(name,job)
  6. {
  7. }
  8.  
  9. void Queen::DoJob()
  10. {
  11. cout << mJob << endl;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement