----------------------------------------------------------------- �������� ������ ���� �� "�������� ����". ������: TWaitCursor wait; ���������� ������ ������ ��� ������ ������� �� ������� ���������
| 134 | // �������� ������ ���� �� "�������� ����". ������: TWaitCursor wait; |
| 135 | // ���������� ������ ������ ��� ������ ������� �� ������� ��������� |
| 136 | class TWaitCursor |
| 137 | { |
| 138 | public: |
| 139 | TWaitCursor() : oldc((TCursor)Screen->Cursor) |
| 140 | { Screen->Cursor = (TCursor)crHourGlass; } |
| 141 | ~TWaitCursor() { Screen->Cursor = (TCursor)oldc; } |
| 142 | |
| 143 | private: |
| 144 | TCursor oldc; |
| 145 | }; |
| 146 | //--------------------------------------------------------------------------- |
| 147 | // ������������� ����������������� ����� hex � �������� |
| 148 | BYTE HexVal(char hex); |
nothing calls this directly
no outgoing calls
no test coverage detected