Skip to content

Commit ddab612

Browse files
committed
FEAT read binary containers enabled
1 parent 0bfb948 commit ddab612

File tree

3 files changed

+41
-378
lines changed

3 files changed

+41
-378
lines changed

include/output.h

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,12 @@ class OutputContainer {
133133
\brief write a binary file with the information in the container
134134
**/
135135
bool write_container_binary();
136-
136+
137+
/**********************************************************************
138+
\brief read a binary file with the information into a container
139+
**/
140+
bool read_container_binary();
141+
137142
/**********************************************************************
138143
\brief write a netcdf file with the information in the container
139144
**/
@@ -142,7 +147,7 @@ class OutputContainer {
142147
/**********************************************************************
143148
\brief read from a file an load into the container
144149
**/
145-
void read();
150+
bool read();
146151

147152
/**********************************************************************
148153
\brief display information contained in the container
@@ -152,7 +157,7 @@ class OutputContainer {
152157
/**********************************************************************
153158
\brief read a netcdf file - put the information in the container
154159
**/
155-
int read_container_netcdf();
160+
bool read_container_netcdf();
156161

157162
/**********************************************************************
158163
\brief clears the vector of variables

0 commit comments

Comments
 (0)