Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. #include <vector>
  4. #include <string>
  5. #include <time.h>
  6.  
  7. class Customer
  8. {
  9. string name;
  10. int id;
  11. vector<Campaign> campaigns;
  12. int idIndex=0;
  13. vector<Campaign> activeCampaigns;
  14.  
  15. public:
  16.  
  17. void CreateCustomer();
  18. void AddCampaign();
  19. void GetActiveCampaignList();
  20. bool HasActiveCampaigns();
  21.  
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement