Advertisement
jelyslime

headerFile

Feb 25th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. #pragma once
  2. #include<string.h>
  3. #include<string>
  4.  
  5. class myClass
  6. {
  7. public:
  8.     myClass();
  9.     myClass(std::string bul, std::string eng);
  10.  
  11.     ~myClass();
  12.  
  13.     void newWordTrans(std::string bul, std::string eng);
  14.  
  15.     void setBul(std::string bul);
  16.     std::string getBul()const;
  17.     void setEng(std::string eng);
  18.     std::string getEng() const;
  19.    
  20.     std::string engWordCheck() const;
  21.     std::string transToEng() const;
  22.  
  23.     std::string bulWordCheck() const;
  24.     std::string transToBul() const;
  25.  
  26.     void delBul();
  27.     void delEng();
  28.  
  29.     std::string getToStr();
  30.  
  31. private:
  32.     std::string bul;
  33.     std::string eng;
  34.  
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement