remove superfluous includes of iostream, use iosfwd instead

This commit is contained in:
wmayer
2020-07-28 15:22:23 +02:00
parent 4329ccd1ed
commit cd5341001e
10 changed files with 6 additions and 35 deletions

View File

@@ -29,8 +29,6 @@
#define TECHDRAW_EDGEWALKER_H
#include <vector>
#include <iostream>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/properties.hpp>
#include <boost/graph/graph_traits.hpp>
@@ -94,7 +92,7 @@ public:
std::vector<WalkerEdge> wedges; //[WE] representing 1 wire
void push_back(WalkerEdge w);
void clear() {wedges.clear();};
void clear() {wedges.clear();}
int size(void);
};

View File

@@ -25,9 +25,6 @@
#ifndef _TechDraw_HATCHLINE_H_
#define _TechDraw_HATCHLINE_H_
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <string>

View File

@@ -25,9 +25,6 @@
#ifndef _TechDraw_LINEGROUP_H_
#define _TechDraw_LINEGROUP_H_
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
namespace TechDraw