Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/pyhpp_plot/graph_viewer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,16 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
// OF THE POSSIBILITY OF SUCH DAMAGE.

// Include Qt and HPP headers first (these define Qt's 'slots' macro)
// clang-format off
// Boost.Python must be included before Qt headers to avoid keyword conflicts
// Prevent pre commit from reorganizing includes alphabetically
#include <boost/python.hpp>
#include <boost/python/extract.hpp>

#include <QApplication>
#include <QMainWindow>
// clang-format on

#include <hpp/manipulation/graph/graph.hh>
#include <hpp/plot/hpp-native-graph.hh>

Expand Down