Advertisement
Guest User

Untitled

a guest
Oct 8th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #pragma once
  2. class Waiter
  3. {
  4.     int ID;
  5.     int IDofServiced;
  6.  
  7. public:
  8.     void Set_ID(int n);
  9.     int Get_ID();
  10.     Waiter(int = 1, int = 0);
  11.     ~Waiter();
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement