FileSystems.cpp 832 B

123456789101112131415161718192021222324
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "FileSystems.h"
  5. #include "RemoteFiles.h"
  6. #include "Common.h"
  7. //---------------------------------------------------------------------------
  8. #pragma package(smart_init)
  9. //---------------------------------------------------------------------------
  10. __fastcall TCustomFileSystem::TCustomFileSystem(TTerminal * ATerminal):
  11. FTerminal(ATerminal)
  12. {
  13. DebugAssert(FTerminal);
  14. }
  15. //---------------------------------------------------------------------------
  16. __fastcall TCustomFileSystem::~TCustomFileSystem()
  17. {
  18. }
  19. //---------------------------------------------------------------------------
  20. UnicodeString __fastcall TCustomFileSystem::GetHomeDirectory()
  21. {
  22. throw Exception(L"Not implemented");
  23. }