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 * Side Effects Software Inc 00008 * 477 Richmond Street West 00009 * Toronto, Ontario 00010 * Canada M5V 3E7 00011 * 416-504-9876 00012 * 00013 * NAME: DOP_AutoSolver.h ( SOP Library, C++) 00014 * 00015 * COMMENTS: 00016 */ 00017 00018 #ifndef __DOP_AutoSolver_h__ 00019 #define __DOP_AutoSolver_h__ 00020 00021 #include "DOP_API.h" 00022 #include "DOP_Auto.h" 00023 00024 class DOP_API DOP_AutoSolver : public DOP_Auto 00025 { 00026 public: 00027 DOP_AutoSolver(OP_Network *net, const char *name, OP_Operator *op); 00028 virtual ~DOP_AutoSolver(); 00029 00030 virtual unsigned disableParms(); 00031 00032 static OP_Node *myConstructor(OP_Network *net, 00033 const char *name, 00034 OP_Operator *entry); 00035 static PRM_Template theCommonTemplates[]; 00036 00037 protected: 00038 virtual void processObjectsSubclass(fpreal time, 00039 int foroutputidx, 00040 const SIM_ObjectArray &objects, 00041 DOP_Engine &engine); 00042 00043 virtual PRM_Template*getCommonTemplates() const; 00044 00045 virtual int SHAREDATA(); 00046 virtual int UNIQUEDATANAME(); 00047 virtual void DATANAME(UT_String &str, fpreal t); 00048 00049 int MUTUALAFFECTOR(); 00050 }; 00051 00052 #endif
1.5.9