00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _GEDDEI_DSCOUPLING_H
00012 #define _GEDDEI_DSCOUPLING_H
00013
00014 #ifdef __GEDDEI_BUILD
00015 #include "dxcoupling.h"
00016 #include "xscoupling.h"
00017 #else
00018 #include <geddei/dxcoupling.h>
00019 #include <geddei/xscoupling.h>
00020 #endif
00021
00022 namespace Geddei
00023 {
00024
00025 class DomProcessor;
00026
00031 class DSCoupling: public DxCoupling, public xSCoupling
00032 {
00033 friend class DomProcessor;
00034 DSCoupling(DomProcessor *dom, SubProcessor *subProc);
00035 };
00036
00037
00038 };
00039
00040 #endif