123456789101112131415161718192021222324252627282930313233 |
- /*=========================================================================
- Library: ctk
- Copyright (c) Kitware Inc.
- All rights reserved.
- Distributed under a BSD License. See LICENSE.txt file.
- This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- See the above copyright notice for more information.
- =========================================================================*/
- /// CTK includes
- #include "ctkTransferFunction.h"
- //-----------------------------------------------------------------------------
- ctkTransferFunction::ctkTransferFunction(QObject* parentObject)
- :QObject(parentObject)
- {
- }
- //-----------------------------------------------------------------------------
- ctkTransferFunction::~ctkTransferFunction()
- {
- // foreach(ctkControlPoint* cp, this->ControlPoints)
- // {
- // delete cp;
- // }
- // this->ControlPoints->clear();
- // emit changed();
- }
|