#ifndef _UMLCOMPONENTVIEW_H #define _UMLCOMPONENTVIEW_H #include "UmlBaseComponentView.h" #include class FileOut; // 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) {}; virtual bool write_if_needed(FileOut & out); virtual void write(FileOut & out); }; #endif