1 // AppNodeInfoView.h (Cortex/InfoView) 2 // 3 // * PURPOSE 4 // In addition to the fields defined by its base class 5 // LiveNodeInfoView, this class defines fields about 6 // the application in which the node 'lives' 7 // 8 // * HISTORY 9 // c.lenz 3dec99 Begun 10 // 11 12 #ifndef __AppNodeInfoView_H__ 13 #define __AppNodeInfoView_H__ 14 15 #include "LiveNodeInfoView.h" 16 17 #include "cortex_defs.h" 18 __BEGIN_CORTEX_NAMESPACE 19 20 class NodeRef; 21 22 class AppNodeInfoView : public LiveNodeInfoView 23 { 24 25 public: // *** ctor/dtor 26 27 // add app related fields to the view by looking at 28 // the nodes port and querying the application roster 29 AppNodeInfoView( 30 const NodeRef *ref); 31 32 virtual ~AppNodeInfoView(); 33 }; 34 35 __END_CORTEX_NAMESPACE 36 #endif /* __AppNodeInfoView_H__ */ 37