iphreeqc/CurveObject.cpp
Scott R Charlton c0a8627fbe fixed all System::Threading::Interlocked::CompareExchange and added some debugging code
git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@7200 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2012-12-13 22:20:53 +00:00

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