#ifndef _UMLBASEVIEW_H #define _UMLBASEVIEW_H #include "UmlItem.h" #include class UmlBaseView : public UmlItem { protected: // the constructor, do not call it yourself !!!!!!!!!! UmlBaseView(void * id, const QCString & s) : UmlItem(id, s) { } }; #endif