#include "PreCompiled.h"
#include <sstream>
#include <climits>
#include <boost/graph/topological_sort.hpp>
#include <boost/graph/depth_first_search.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <boost/graph/visitors.hpp>
#include <boost/graph/graphviz.hpp>
#include <boost/bind.hpp>
#include "Document.h"
#include "DocumentPy.h"
#include "Application.h"
#include "DocumentObject.h"
#include "PropertyLinks.h"
#include <Base/Console.h>
#include <Base/Exception.h>
#include <Base/FileInfo.h>
#include <Base/TimeInfo.h>
#include <Base/Interpreter.h>
#include <Base/Reader.h>
#include <Base/Writer.h>
#include <Base/Stream.h>
#include <Base/Tools.h>
#include <Base/Uuid.h>
#include <zipios++/zipios-config.h>
#include <zipios++/zipfile.h>
#include <zipios++/zipinputstream.h>
#include <zipios++/zipoutputstream.h>
#include <zipios++/meta-iostreams.h>
#include "Transactions.h"
Go to the source code of this file.
Classes | |
struct | App::DocumentP |
Namespaces | |
namespace | App |
The namespace of the FreeCAD Aplication layer library. | |
Typedefs | |
typedef boost::adjacency_list < boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > | DependencyList |
typedef Traits::edge_descriptor | Edge |
typedef boost::graph_traits < DependencyList > | Traits |
typedef Traits::vertex_descriptor | Vertex |
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::directedS, boost::no_property, boost::no_property, boost::no_property, boost::listS > DependencyList |
Definition at line 119 of file App/Document.cpp.
typedef Traits::edge_descriptor Edge |
Definition at line 122 of file App/Document.cpp.
typedef boost::graph_traits<DependencyList> Traits |
Definition at line 120 of file App/Document.cpp.
typedef Traits::vertex_descriptor Vertex |
Definition at line 121 of file App/Document.cpp.