1 /*
2     This file is a part of the RepSnapper project.
3     Copyright (C) 2011 Michael Meeks
4 
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU Lesser General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9 
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Lesser General Public License for more details.
14 
15     You should have received a copy of the GNU Lesser General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 /* #ifndef TYPES_H */
21 /* #define TYPES_H */
22 #pragma once
23 
24 // try to avoid compile time explosion by reducing includes
25 
26 
27 class GUI;
28 class Poly;
29 class View;
30 class GCode;
31 class GCodeState;
32 class GCodeIter;
33 class Printlines;
34 class PLine2;
35 class PLine3;
36 class Model;
37 class Render;
38 class Command;
39 class Printer;
40 class Settings;
41 class PrefsDlg;
42 class Triangle;
43 class RepRapSerial;
44 class Layer;
45 class PrintInhibitor;
46 class ProcessController;
47 class ObjectsTree;
48 class TreeObject;
49 class Shape;
50 class FlatShape;
51 class Transform3D;
52 class Infill;
53 class ViewProgress;
54 class ConnectView;
55 class Transform3D;
56 
57 enum SerialState { SERIAL_DISCONNECTED, SERIAL_DISCONNECTING,
58 		   SERIAL_CONNECTED, SERIAL_CONNECTING };
59 
60 
61 /* #endif // TYPES_H */
62