Browse Source

forward declarations, reduce compilation overhead

tempestpy_adaptions
Sebastian Junges 8 years ago
parent
commit
2fd915f74c
  1. 2
      src/storm/storage/jani/Edge.cpp
  2. 6
      src/storm/storage/jani/Edge.h
  3. 1
      src/storm/storage/jani/OrderedAssignments.cpp

2
src/storm/storage/jani/Edge.cpp

@ -5,6 +5,8 @@
#include "storm/utility/macros.h"
#include "storm/exceptions/InvalidArgumentException.h"
#include "storm/storage/jani/TemplateEdge.h"
namespace storm {
namespace jani {

6
src/storm/storage/jani/Edge.h

@ -3,14 +3,16 @@
#include <memory>
#include <boost/optional.hpp>
#include <boost/container/flat_set.hpp>
#include "storm/storage/jani/TemplateEdge.h"
#include "storm/storage/jani/EdgeDestination.h"
#include "storm/storage/jani/OrderedAssignments.h"
namespace storm {
namespace jani {
class TemplateEdge;
class Edge {
public:
Edge() = default;

1
src/storm/storage/jani/OrderedAssignments.cpp

@ -2,6 +2,7 @@
#include "storm/utility/macros.h"
#include "storm/exceptions/InvalidArgumentException.h"
#include "storm/storage/jani/VariableSet.h"
namespace storm {
namespace jani {

Loading…
Cancel
Save