mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@7200 1feff8c3-07ed-0310-ac33-dd36852eb9cd
35 lines
737 B
C++
35 lines
737 B
C++
// CurveObject.cpp: implementation of the CurveObject class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#ifdef MULTICHART
|
|
#ifdef _DEBUG
|
|
#pragma warning(disable : 4786) // disable truncation warning (Only used by debugger)
|
|
#endif
|
|
#include "CurveObject.h"
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CurveObject::CurveObject()
|
|
//
|
|
// default constructor for cxxExchComp
|
|
//
|
|
{
|
|
x.clear();
|
|
y.clear();
|
|
this->id = "";
|
|
this->symbol = "";
|
|
this->color = "";
|
|
this->y_axis = 1;
|
|
this->line_w = 1.0;
|
|
this->symbol_size = 6.0;
|
|
}
|
|
|
|
|
|
CurveObject::~CurveObject()
|
|
{
|
|
}
|
|
|
|
#endif // MULTICHART
|