Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. #include "string"
  2. #include "stdafx.h"
  3. #include <iostream>
  4. using namespace std;
  5. class recepcjonista
  6. {
  7. public:
  8. recepcjonista();
  9. ~recepcjonista();
  10. void zapisNowegoPacjenta();
  11. void umuwienieWizyty();
  12. void odwolanieWizyty();
  13. void usunieciePacjenta();
  14. };
  15. recepcjonista::recepcjonista()
  16. {
  17. }
  18.  
  19.  
  20. recepcjonista::~recepcjonista()
  21. {
  22. }
  23.  
  24.  
  25. void recepcjonista::zapisNowegoPacjenta()
  26. {
  27. }
  28.  
  29.  
  30. void recepcjonista::umuwienieWizyty()
  31. {
  32. }
  33.  
  34.  
  35. void recepcjonista::odwolanieWizyty()
  36. {
  37. }
  38.  
  39.  
  40. void recepcjonista::usunieciePacjenta()
  41. {
  42. }
  43. class lekarz
  44. {
  45. public:
  46. lekarz();
  47. ~lekarz();
  48. int ID;
  49. string imie;
  50. string nazwisko;
  51. string plec;
  52. bool badanie;
  53. };
  54. lekarz::lekarz()
  55. {
  56. ID = 0;
  57. }
  58.  
  59.  
  60. lekarz::~lekarz()
  61. {
  62. }
  63. class Pacjent
  64. {
  65. public:
  66. Pacjent();
  67. ~Pacjent();
  68. string Imie;
  69. int ID;
  70. string nazwisko;
  71. bool zgloszenieDoPrzychodnii();
  72. private:
  73. string adres;
  74. string Imie;
  75. int ID;
  76. string nazwisko;
  77. string lekarzDomowy;
  78. };
  79.  
  80. Pacjent::Pacjent()
  81. {
  82. ID=0;
  83.  
  84. }
  85.  
  86.  
  87. Pacjent::~Pacjent()
  88. {
  89. }
  90.  
  91.  
  92. bool Pacjent::zgloszenieDoPrzychodnii()
  93. {
  94. }
  95.  
  96. int main()
  97. {
  98. return 0;
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement