#include "SMESH_DriverUNV.hxx"
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <stdexcept>
#include <cassert>
#include <cstdlib>
Go to the source code of this file.
|
bool | UNV::beginning_of_dataset (std::istream &in_file, const std::string &ds_name) |
|
double | UNV::D_to_e (std::string &number) |
| Method for converting exponential notation from "D" to "e", for example 3.141592654D+00 –> 3.141592654e+00 in order to make it readable for C++. More...
|
|
bool | UNV::check_file (const std::string theFileName) |
|
◆ MESSAGE
#define MESSAGE |
( |
|
msg | ) |
std::cout<<__FILE__<<"["<<__LINE__<<"]::"<<msg<<endl; |
◆ BEGMSG
◆ ADDMSG
#define ADDMSG |
( |
|
msg | ) |
std::cout<<msg |
◆ EXCEPTION
#define EXCEPTION |
( |
|
TYPE, |
|
|
|
MSG |
|
) |
| |
Value:{\
std::ostringstream aStream;\
aStream<<__FILE__<<"["<<__LINE__<<"]::"<<MSG;\
throw TYPE(aStream.str());\
}
Definition at line 129 of file UNV_Utilities.hxx.