mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
removed debugging code
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4272 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
parent
0a2feb4ad1
commit
b51c3bf7d6
@ -18,25 +18,18 @@ private:
|
||||
int
|
||||
CreateIPhreeqc(void)
|
||||
{
|
||||
// return IPhreeqcLib::CreateIPhreeqc();
|
||||
int i = IPhreeqcLib::CreateIPhreeqc();
|
||||
std::cout << "CreateIPhreeqc " << i << "\n";
|
||||
return i;
|
||||
return IPhreeqcLib::CreateIPhreeqc();
|
||||
}
|
||||
|
||||
IPQ_RESULT
|
||||
DestroyIPhreeqc(int id)
|
||||
{
|
||||
// return IPhreeqcLib::DestroyIPhreeqc(id);
|
||||
IPQ_RESULT i = IPhreeqcLib::DestroyIPhreeqc(id);
|
||||
std::cout << "DestroyIPhreeqc( " << id << ") = " << i << "\n";
|
||||
return i;
|
||||
return IPhreeqcLib::DestroyIPhreeqc(id);
|
||||
}
|
||||
|
||||
int
|
||||
LoadDatabase(int id, const char* filename)
|
||||
{
|
||||
std::cout << "In LoadDatabase id = " << id << "\n";
|
||||
IPhreeqc* IPhreeqcPtr = IPhreeqcLib::GetInstance(id);
|
||||
if (IPhreeqcPtr)
|
||||
{
|
||||
@ -72,7 +65,6 @@ void
|
||||
OutputLastError(int id)
|
||||
{
|
||||
static const char err_msg[] = "OutputLastError: Bad instance.\n";
|
||||
std::cout << "In OutputLastError id = " << id << "\n";
|
||||
IPhreeqc* IPhreeqcPtr = IPhreeqcLib::GetInstance(id);
|
||||
if (IPhreeqcPtr)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user