mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 08:38:23 +01:00
git-subtree-dir: phreeqcpp git-subtree-mainline: ba5f2ba885b4cc757201e28f9b4dce158f7cc66b git-subtree-split: da9d06b423a87ed5eae503c0faf779ac11c96027
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
|