diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-03 04:10:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-03 04:10:36 (GMT) |
commit | 6f632190a05417d44193e3b16a7b3000b2cc1145 (patch) | |
tree | 9ddccef57c10361a7019274f79f1d86edb7630d3 /src/importnode.h | |
parent | 3129189342f3da7322efa0b860ff3ff676ba7b77 (diff) |
Ported a bunch of stuff from Qt to STL
Diffstat (limited to 'src/importnode.h')
-rw-r--r-- | src/importnode.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/importnode.h b/src/importnode.h index 94417b9..3fcdb37 100644 --- a/src/importnode.h +++ b/src/importnode.h @@ -3,7 +3,6 @@ #include "node.h" #include "visitor.h" -#include <QString> enum import_type_e { TYPE_STL, @@ -22,8 +21,8 @@ public: virtual std::string name() const; import_type_e type; - QString filename; - QString layername; + std::string filename; + std::string layername; int convexity; double fn, fs, fa; double origin_x, origin_y, scale; |