VR-Forces 4.0.4 Class Documentation
include/vrfobjcore/portGroupConn.h
Go to the documentation of this file.
00001 /*******************************************************************************
00002 ** Copyright (c) 2003 MaK Technologies, Inc.
00003 ** All rights reserved.
00004 *******************************************************************************/
00005 /*******************************************************************************
00006 ** $RCSfile: portGroupConn.h,v $ $Revision: 1.8 $ $State: Exp $
00007 *******************************************************************************/
00008 
00011 
00013 
00014 #ifndef DtPortGroupConnection_H_
00015 #define DtPortGroupConnection_H_
00016 
00017 #include <vlutil/vlMachineTypes.h>
00018 #include <vlutil/vlList.h>
00019 
00020 class DtInputPortGroup;
00021 class DtOutputPortGroup;
00022 class DtPortConnection;
00023 
00024 #include "vrfobjcore/vrfobjcoreDefines.h"
00025 class DT_DLL_vrfobjcore DtPortGroupConnection
00026 {
00027 public:
00028 
00030    DtPortGroupConnection(DtOutputPortGroup* sourceGroup, 
00031       DtInputPortGroup* destGroup, int priority);
00032 
00035    virtual ~DtPortGroupConnection();
00036 
00037 private:
00039    DtPortGroupConnection(const DtPortGroupConnection&);
00041    DtPortGroupConnection& operator=(const DtPortGroupConnection&);
00042 
00043 public:
00048    virtual bool init();
00049 
00051    virtual const DtList* subConnections() const;
00052 
00054    virtual int priority() const;
00057    virtual void setPriority(int priority);
00058 
00059 protected:
00060    DtInputPortGroup* myDestGroup;
00061    DtOutputPortGroup* mySourceGroup;
00062    int myPriority;
00063    DtList myPortConnectionList;
00064 
00065 };
00066 
00067 #endif

Document ID: Generated on Fri Jun 29 16:33:32 EDT 2012 from SVN revision 116588
Copyright © 2005-2012 VT MÄK Inc. All Rights Reserved (www.mak.com)