We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66445eb commit 73965eaCopy full SHA for 73965ea
source/source_io/read_wfc_nao.h
@@ -14,6 +14,7 @@ namespace ModuleIO
14
* @param ifs The input file stream to read from.
15
* @param data The variable to store the read data value.
16
*/
17
+void read_wfc_nao_one_data(std::ifstream& ifs, float& data);
18
void read_wfc_nao_one_data(std::ifstream& ifs, double& data);
19
20
/**
@@ -22,6 +23,7 @@ void read_wfc_nao_one_data(std::ifstream& ifs, double& data);
22
23
24
* @param data The variable to store the read complex data value.
25
26
+void read_wfc_nao_one_data(std::ifstream& ifs, std::complex<float>& data);
27
void read_wfc_nao_one_data(std::ifstream& ifs, std::complex<double>& data);
28
29
0 commit comments