Changeset 508
- Timestamp:
- 10/24/14 17:09:55 (10 years ago)
- Location:
- XIOS/branchs/xios-1.0/src/output
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/branchs/xios-1.0/src/output/netCdfInterface.cpp
r501 r508 49 49 int CNetCdfInterface::createPar(const StdString& fileName, int cMode, MPI_Comm comm, MPI_Info info, int& ncId) 50 50 { 51 int status = ::nc_create_par((fileName.c_str()), cMode, comm, info, &ncId);51 int status = xios::nc_create_par((fileName.c_str()), cMode, comm, info, &ncId); 52 52 if (NC_NOERR != status) 53 53 { … … 102 102 int CNetCdfInterface::openPar(const StdString& fileName, int oMode, MPI_Comm comm, MPI_Info info, int& ncId) 103 103 { 104 int status = ::nc_open_par((fileName.c_str()), oMode, comm, info, &ncId);104 int status = xios::nc_open_par((fileName.c_str()), oMode, comm, info, &ncId); 105 105 if (NC_NOERR != status) 106 106 { -
XIOS/branchs/xios-1.0/src/output/netCdfInterface.hpp
r501 r508 12 12 #include "xmlioserver_spl.hpp" 13 13 #include "mpi.hpp" 14 #include "exception.hpp" 14 15 #include "netcdf.hpp" 15 16
Note: See TracChangeset
for help on using the changeset viewer.