Advertisement
Gov_777

Объявление функции в билдере С++

Jun 26th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. //объявление в *.cpp
  2. bool TForm1::CheckShararam(void) {
  3.     TIdTCPClient* TCP = new TIdTCPClient(NULL);
  4.     try {
  5.         try {
  6.             TCP->Host = "*site.com";
  7.             TCP->Port = 80;
  8.             TCP->ConnectTimeout = 1000;
  9.             TCP->Connect();
  10.             return TCP->Connected();
  11.         }
  12.         catch (...) {
  13.             ShowMessage("catch");
  14.             return false;
  15.         }
  16.     }
  17.     __finally {
  18.         delete TCP;
  19.         ShowMessage("finally");
  20.     }
  21. }
  22. //объявление в *.h
  23. public: // User declarations
  24. bool CheckShararam();
  25. //видимость из другой формы
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement