xref: /haiku/src/apps/cortex/InfoView/FileNodeInfoView.h (revision d3d8b26997fac34a84981e6d2b649521de2cc45a)
1 // FileNodeInfoView.h (Cortex/InfoView)
2 //
3 // * PURPOSE
4 //   In addition to the fields defined by its base class
5 //   LiveNodeInfoView, this class defines media-file specific
6 //   fields, line number of tracks, codecs, formats, etc.
7 //
8 // * HISTORY
9 //   c.lenz		13nov99		Begun
10 //
11 
12 #ifndef __FileNodeInfoView_H__
13 #define __FileNodeInfoView_H__
14 
15 #include "LiveNodeInfoView.h"
16 
17 #include "cortex_defs.h"
18 __BEGIN_CORTEX_NAMESPACE
19 
20 class NodeRef;
21 
22 class FileNodeInfoView : public LiveNodeInfoView
23 {
24 
25 public:					// *** ctor/dtor
26 
27 	// add file related fields to the view by creating
28 	// and querying an instance of BMediaFile/BMediaTrack
29 						FileNodeInfoView(
30 							const NodeRef *ref);
31 
32 	virtual				~FileNodeInfoView();
33 };
34 
35 __END_CORTEX_NAMESPACE
36 #endif /* __FileNodeInfoView_H__ */
37