00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef COIN_SOCONCATENATE_H
00021 #define COIN_SOCONCATENATE_H
00022
00023 #include <Inventor/engines/SoSubEngine.h>
00024 #include <Inventor/engines/SoEngineOutput.h>
00025 #include <Inventor/fields/SoMField.h>
00026
00027
00028 class COIN_DLL_API SoConcatenate : public SoEngine {
00029 typedef SoEngine inherited;
00030
00031 SO_ENGINE_HEADER(SoConcatenate);
00032
00033 enum { NUMINPUTS = 10 };
00034
00035 public:
00036 static void initClass(void);
00037 SoConcatenate(SoType inputType);
00038
00039 SoMField * input[NUMINPUTS];
00040
00041 SoEngineOutput * output;
00042
00043 private:
00044 SoConcatenate(void);
00045 ~SoConcatenate();
00046
00047 virtual void evaluate(void);
00048
00049 virtual SbBool readInstance(SoInput * in, unsigned short flags);
00050 virtual void writeInstance(SoOutput * out);
00051
00052 SbBool initialize(const SoType inputfieldtype);
00053
00054 virtual void copyContents(const SoFieldContainer * from,
00055 SbBool copyconnections);
00056
00057
00058
00059
00060 SoFieldData * dynamicinput;
00061 SoEngineOutputData * dynamicoutput;
00062
00063
00064 friend class dummy;
00065 };
00066
00067 #endif // !COIN_SOCONCATENATE_H