home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Components / CBrowser / Element.h.z / Element.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  269 b   |  20 lines

  1. #ifndef _C_ELEMENT_
  2. #define _C_ELEMENT_
  3.  
  4. #include <Vk/VkComponent.h>
  5.  
  6. class Celement : public VkComponent {
  7.  
  8. public:
  9.  
  10.   Celement(const char *name, Widget parent, int componentIndex);
  11.   ~Celement();
  12.  
  13. protected:
  14.  
  15.   Widget label, sep;
  16.   VkComponent *component;
  17. };
  18.  
  19. #endif
  20.