00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _SALOME_FILETRANSFERCORBA_HXX_
00029 #define _SALOME_FILETRANSFERCORBA_HXX_
00030
00031
00032 #include <SALOMEconfig.h>
00033 #include <Utils_SALOME_Exception.hxx>
00034
00035 #include CORBA_CLIENT_HEADER(SALOME_Component)
00036
00037 #include <string>
00038 #include <stdio.h>
00039
00040 #ifdef WIN32
00041 # if defined LIFECYCLECORBA_EXPORTS || defined SalomeLifeCycleCORBA_EXPORTS
00042 # define LIFECYCLECORBA_EXPORT __declspec( dllexport )
00043 # else
00044 # define LIFECYCLECORBA_EXPORT __declspec( dllimport )
00045 # endif
00046 #else
00047 # define LIFECYCLECORBA_EXPORT
00048 #endif
00049
00050 class LIFECYCLECORBA_EXPORT SALOME_FileTransferCORBA
00051 {
00052 public:
00053 SALOME_FileTransferCORBA();
00054 SALOME_FileTransferCORBA(Engines::fileRef_ptr aFileRef);
00055 SALOME_FileTransferCORBA(std::string refMachine,
00056 std::string origFileName,
00057 std::string containerName="");
00058
00059 virtual ~SALOME_FileTransferCORBA();
00060
00061 std::string getLocalFile(std::string localFile = "");
00062
00063 protected:
00064 Engines::fileRef_var _theFileRef;
00065 std::string _refMachine;
00066 std::string _origFileName;
00067 std::string _containerName;
00068 };
00069
00070 #endif