~michele-castellana/kicad/new_tree_view

« back to all changes in this revision

Viewing changes to include/ttl/halfedge/hetriang.h

  • Committer: Wayne Stambaugh
  • Author(s): Simon Richter
  • Date: 2016-06-29 15:09:55 UTC
  • Revision ID: stambaughw@verizon.net-20160629150955-dgx470rdtmfs6lw3
Replace boost::shared_ptr with std::shared_ptr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
#include <iostream>
51
51
#include <fstream>
52
52
#include <ttl/ttl_util.h>
53
 
#include <boost/shared_ptr.hpp>
54
 
#include <boost/weak_ptr.hpp>
 
53
#include <memory>
55
54
#include <layers_id_colors_and_visibility.h>
56
55
 
57
56
class BOARD_CONNECTED_ITEM;
69
68
// Helper typedefs
70
69
class NODE;
71
70
class EDGE;
72
 
typedef boost::shared_ptr<NODE> NODE_PTR;
73
 
typedef boost::shared_ptr<EDGE> EDGE_PTR;
74
 
typedef boost::weak_ptr<EDGE> EDGE_WEAK_PTR;
 
71
typedef std::shared_ptr<NODE> NODE_PTR;
 
72
typedef std::shared_ptr<EDGE> EDGE_PTR;
 
73
typedef std::weak_ptr<EDGE> EDGE_WEAK_PTR;
75
74
typedef std::vector<NODE_PTR> NODES_CONTAINER;
76
75
 
77
76
/**