Commit 9e4e94fb authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.2.11-20011003

parent 00e00a1d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.11
DOXYGEN Version 1.2.11-20011003

Please read the installation section of the manual for instructions.

--------
Dimitri van Heesch (30 September 2001)
Dimitri van Heesch (03 October 2001)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.11
DOXYGEN Version 1.2.11_20011003

Please read INSTALL for compilation instructions.

@@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives.

Enjoy,

Dimitri van Heesch (dimitri@stack.nl) (30 September 2001)
Dimitri van Heesch (dimitri@stack.nl) (03 October 2001)
+1 −1
Original line number Diff line number Diff line
1.2.11
1.2.11-20011003
+13 −4
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@ CompoundHandler::CompoundHandler(IBaseHandler *parent)
  addStartHandler("detaileddescription",this,&CompoundHandler::startDetailedDesc);
  
  addStartHandler("sectiondef",this,&CompoundHandler::startSection);
  
  addStartHandler("location",this,&CompoundHandler::startLocation);
  addEndHandler("location");
}

CompoundHandler::~CompoundHandler()
@@ -77,6 +80,12 @@ void CompoundHandler::startCompound(const QXmlAttributes& attrib)
  printf("startCompound(id=`%s' type=`%s')\n",m_id.data(),m_kind.data());
}

void CompoundHandler::startLocation(const QXmlAttributes& attrib)
{
  m_defFile = attrib.value("file");
  m_defLine = attrib.value("line").toInt();
}

void CompoundHandler::endCompound()
{
   printf("endCompound()\n");
+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler>
    virtual void endCompoundName();
    virtual void startBriefDesc(const QXmlAttributes& attrib);
    virtual void startDetailedDesc(const QXmlAttributes& attrib);
    virtual void startLocation(const QXmlAttributes& attrib);

    CompoundHandler(IBaseHandler *parent);
    virtual ~CompoundHandler();
@@ -74,6 +75,8 @@ class CompoundHandler : public ICompound, public BaseHandler<CompoundHandler>
    QString m_id;
    QString m_kind;
    QString m_name;
    QString m_defFile;
    int m_defLine;
};

#endif
Loading