![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2003 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: remoteComponentConfigurationBuilder.h,v $ $Revision: 1.2 $ $State: Exp $ 00007 *******************************************************************************/ 00008 #ifndef DTREMOTECOMPONENTCONFIGURATIONBUILDER_H_ 00009 #define DTREMOTECOMPONENTCONFIGURATIONBUILDER_H_ 00010 00013 00014 class DtString; 00015 class DtFilename; 00016 class DtVrfObject; 00017 00018 class DtRemoteComponentAttachmentManager; 00019 00020 #include "vrfobjcore/vrfobjcoreDefines.h" 00021 00027 class DT_DLL_vrfobjcore DtRemoteComponentConfigurationBuilder 00028 { 00029 public: 00030 00031 typedef DtRemoteComponentConfigurationBuilder* (*CreatorFcn)(DtRemoteComponentAttachmentManager*); 00032 00033 public: 00034 00036 DtRemoteComponentConfigurationBuilder(DtRemoteComponentAttachmentManager *pRemoteCompAttachMgr); 00037 00039 virtual ~DtRemoteComponentConfigurationBuilder(); 00040 00041 public: 00042 00046 virtual bool addRemoteConfigurationToObject(const DtString& configKeyName, 00047 DtVrfObject* pVrfObj) = 0; 00048 00049 public: 00050 00053 static DtRemoteComponentConfigurationBuilder* create(DtRemoteComponentAttachmentManager*); 00054 00055 protected: 00056 00057 DtRemoteComponentAttachmentManager *pMyRemoteCompAttachMgr; 00058 00059 protected: 00061 DtRemoteComponentConfigurationBuilder(); 00062 00063 private: 00065 DtRemoteComponentConfigurationBuilder(DtRemoteComponentConfigurationBuilder&); 00066 const DtRemoteComponentConfigurationBuilder& operator=(const DtRemoteComponentConfigurationBuilder&); 00067 }; 00068 00069 #endif