Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/cad/csxcad/files/patch-src_CSPropDiscMaterial.cpp
34598 views
1
--- src/CSPropDiscMaterial.cpp.orig 2026-03-02 05:14:03 UTC
2
+++ src/CSPropDiscMaterial.cpp
3
@@ -26,6 +26,9 @@
4
#include "ParameterCoord.h"
5
#include "CSPropDiscMaterial.h"
6
7
+#include <iostream>
8
+
9
+
10
CSPropDiscMaterial::CSPropDiscMaterial(ParameterSet* paraSet) : CSPropMaterial(paraSet)
11
{
12
Type=(CSProperties::PropertyType)(DISCRETE_MATERIAL | MATERIAL);
13
@@ -327,7 +330,7 @@ bool CSPropDiscMaterial::ReadHDF5( std::string filenam
14
15
bool CSPropDiscMaterial::ReadHDF5( std::string filename )
16
{
17
- cout << __func__ << ": Reading \"" << filename << "\"" << std::endl;
18
+ std::cout << __func__ << ": Reading \"" << filename << "\"" << std::endl;
19
20
// open hdf5 file
21
hid_t file_id = H5Fopen( filename.c_str(), H5F_ACC_RDONLY, H5P_DEFAULT );
22
23