00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Rob Bairos,, 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: CL_FitParms.h ( CL Library, C++) 00015 * 00016 * COMMENTS: 00017 * 00018 * A container class to hold conversion parameters 00019 * between raw and spline fit data 00020 */ 00021 00022 #ifndef __CL_FitParms__ 00023 #define __CL_FitParms__ 00024 00025 #include "CL_API.h" 00026 #include <UT/UT_String.h> 00027 #include "CL_Defines.h" 00028 00029 class UT_IStream; 00030 00031 class CL_API CL_FitParms 00032 { 00033 00034 public: 00035 00036 CL_FitParms(); 00037 ~CL_FitParms(); 00038 00039 CL_FitParms &operator= (const CL_FitParms &v); 00040 00041 00042 CL_Unit units; 00043 int relative; 00044 float start; 00045 float end; 00046 float tolerance; 00047 UT_String scope; 00048 UT_String status; 00049 00050 int save(ostream &os, int binary); 00051 bool load(UT_IStream &is); 00052 }; 00053 00054 #endif 00055
1.5.9