Commit 6f70105f authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.4.4-20050815

parent 87a9eb98
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.4
DOXYGEN Version 1.4.4-20050815

Please read the installation section of the manual 
(http://www.doxygen.org/install.html) for instructions.

--------
Dimitri van Heesch (06 August 2005)
Dimitri van Heesch (15 August 2005)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.4.4
DOXYGEN Version 1.4.4_20050815

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) (06 August 2005)
Dimitri van Heesch (dimitri@stack.nl) (15 August 2005)
+1 −1
Original line number Diff line number Diff line
1.4.4-20050808
1.4.4-20050815
+3 −3
Original line number Diff line number Diff line
@@ -1024,7 +1024,7 @@ void ClassDef::writeDocumentation(OutputList &ol)
              m_compType == Interface && m_isObjC ? Class : m_compType,
              m_tempArgs != 0);
  
  startFile(ol,getOutputFileBase(),name(),pageTitle);  
  startFile(ol,getOutputFileBase(),name(),pageTitle,HLI_ClassVisible);  
  if (getOuterScope()!=Doxygen::globalScope)
  {
    writeNavigationPath(ol);
@@ -1645,7 +1645,7 @@ void ClassDef::writeMemberList(OutputList &ol)
  ol.disableAllBut(OutputGenerator::Html);

  startFile(ol,m_memListFileName,m_memListFileName,
            theTranslator->trMemberList());
            theTranslator->trMemberList(),HLI_ClassVisible);
  startTitle(ol,0);
  ol.parseText(displayName()+" "+theTranslator->trMemberList());
  endTitle(ol,0,0);
@@ -2025,7 +2025,7 @@ bool ClassDef::isLinkableInProject() const
  else
  {
    return !name().isEmpty() &&    /* no name */
      !m_artificial &&
      !m_artificial && !isHidden() &&
      name().find('@')==-1 && /* anonymous compound */
      (m_prot!=Private || Config_getBool("EXTRACT_PRIVATE")) && /* private */
      (!m_isLocal || Config_getBool("EXTRACT_LOCAL_CLASSES")) && /* local */
+13 −0
Original line number Diff line number Diff line
@@ -183,6 +183,17 @@ class ClassDef : public Definition
      return m_usesIntfClassDict;
    }

    /** Marks this class as a template argument of some another class */
    void makeTemplateArgument(bool b=TRUE)
    {
      m_isTemplArg = b;
    }

    bool isTemplateArgument() const
    {
      return m_isTemplArg;
    }

    /*! Returns the definition of a nested compound if
     *  available, or 0 otherwise.
     *  @param name The name of the nested compound
@@ -465,6 +476,8 @@ class ClassDef : public Definition
     *  class which is extended.
     */
    ClassDef *m_categoryOf;

    bool m_isTemplArg;
};

/*! \brief Class that contains information about a usage relation. 
Loading