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 * Jeff Lait 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: OP_OutputCode.h ( OP Library, C++) 00015 * 00016 * COMMENTS: The paramater structure for the output code functions. 00017 */ 00018 00019 #ifndef __OP_OutputCode__ 00020 #define __OP_OutputCode__ 00021 00022 #include "OP_API.h" 00023 #include <UT/UT_String.h> 00024 #include <UT/UT_PtrArray.h> 00025 00026 class OP_API OP_OutputCodeParms 00027 { 00028 public: 00029 OP_OutputCodeParms(); 00030 ~OP_OutputCodeParms(); 00031 00032 // Take space delimitted list and add all the parms individually: 00033 void addFParms(const char *parms); 00034 void addIParms(const char *parms); 00035 void addPreDefines(const char *defines); 00036 00037 UT_String myFncName; 00038 UT_String myCFile, myHFile; 00039 UT_PtrArray<char *> myFParm, myIParm; 00040 UT_PtrArray<char *> myPreDefines; 00041 int myTiming; 00042 int myTabSpacing; 00043 int myChannelForce; 00044 }; 00045 00046 #endif 00047
1.5.9