#ifndef _UMLBASEVIEW_H
#define _UMLBASEVIEW_H


#include "UmlItem.h"
#include <qcstring.h>

class UmlBaseView : public UmlItem {
  protected:
    //  the constructor, do not call it yourself !!!!!!!!!!
     UmlBaseView(void * id, const QCString & s) : UmlItem(id, s) {
    }

};

#endif