#ifndef UMLATTRIBUTE_H #define UMLATTRIBUTE_H #include "UmlBaseAttribute.h" // This class manages 'attribute', notes that the class 'UmlClassItem' // is a mother class of the class's children. // You can modify it as you want (except the constructor) class UmlAttribute : public UmlBaseAttribute { public: UmlAttribute(void * id, const QCString & n) : UmlBaseAttribute(id, n) {}; static UmlAttribute * java2Php(UmlClass * php, UmlClass * java, const char * javaname, const char * phpname = 0); }; #endif