add gitignore

This commit is contained in:
张壹 2021-04-19 09:39:09 +08:00
parent df80d03bd7
commit 7428b5a6f0
7 changed files with 16 additions and 16 deletions

View File

View File

@ -17,7 +17,7 @@
*/ */
#include <iostream> #include <iostream>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;

View File

@ -15,7 +15,7 @@
*/ */
#include <iostream> #include <iostream>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;
@ -87,7 +87,7 @@ int main()
if (!(lonDim = dataFile.add_dim("longitude", NLON))) if (!(lonDim = dataFile.add_dim("longitude", NLON)))
return NC_ERR; return NC_ERR;
// Add an unlimited dimension... // Add an unlimited dimension...
if (!(recDim = dataFile.add_dim("time"))) if (!(recDim = dataFile.add_dim("time", NREC)))
return NC_ERR; return NC_ERR;
// Define the coordinate variables. // Define the coordinate variables.

View File

@ -18,7 +18,7 @@
#include <iostream> #include <iostream>
#include <cstring> #include <cstring>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;

View File

@ -17,7 +17,7 @@
*/ */
#include <iostream> #include <iostream>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;

View File

@ -15,7 +15,7 @@
*/ */
#include <iostream> #include <iostream>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;

View File

@ -16,7 +16,7 @@
*/ */
#include <iostream> #include <iostream>
#include <netcdfcpp.h> #include "../lib/netcdfcpp.h"
using namespace std; using namespace std;