#ifndef UMLCOMPONENTVIEW_H #define UMLCOMPONENTVIEW_H #include "UmlBaseComponentView.h" // This class manages 'component view' // You can modify it as you want (except the constructor) class UmlComponentView : public UmlBaseComponentView { public: UmlComponentView(void * id, const QCString & n) : UmlBaseComponentView(id, n) {}; }; #endif