Blame src/diagram.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * 
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby 
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software 
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef DIAGRAM_H
Packit Service 50c9f2
#define DIAGRAM_H
Packit Service 50c9f2
Packit Service 50c9f2
#include <qglobal.h>
Packit Service 50c9f2
Packit Service 50c9f2
class ClassDef;
Packit Service 50c9f2
class TreeDiagram;
Packit Service 50c9f2
class FTextStream;
Packit Service 50c9f2
Packit Service 50c9f2
/** Class representing a built-in class diagram. */
Packit Service 50c9f2
class ClassDiagram
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
    ClassDiagram(ClassDef *root);
Packit Service 50c9f2
   ~ClassDiagram();
Packit Service 50c9f2
    void writeFigure(FTextStream &t,const char *path,
Packit Service 50c9f2
                     const char *file) const;
Packit Service 50c9f2
    void writeImage(FTextStream &t,const char *path,const char *relPath,
Packit Service 50c9f2
                     const char *file,bool generateMap=TRUE) const;
Packit Service 50c9f2
  private:
Packit Service 50c9f2
    TreeDiagram *base;
Packit Service 50c9f2
    TreeDiagram *super;
Packit Service 50c9f2
};
Packit Service 50c9f2
Packit Service 50c9f2
#endif
Packit Service 50c9f2