Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. struct Employee {
  2.     long id_order;
  3.     int id_instr;
  4.     int count_in_order;
  5.     int lost_in_order;
  6.     short reserv;
  7.     int action;
  8.     short vector;
  9.     double cost_order;
  10.     double cost_deal;
  11.     short reserv2;
  12.     short reserv3;
  13.     int date;
  14.     int time;
  15.     short flag;
  16.     short id_deal;
  17. };
  18.  
  19. ostream& operator>> (ostream &out, const Employee &mys) {
  20.     // Something code
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement