177 // Vertex at (0, 0, 0) |
177 // Vertex at (0, 0, 0) |
178 extern const vertex g_origin; |
178 extern const vertex g_origin; |
179 |
179 |
180 // ----------------------------------------------------------------------------- |
180 // ----------------------------------------------------------------------------- |
181 // Pointer to the OpenFile which is currently being edited by the user. |
181 // Pointer to the OpenFile which is currently being edited by the user. |
182 extern OpenFile* g_curfile; |
182 extern LDOpenFile* g_curfile; |
183 |
183 |
184 // ----------------------------------------------------------------------------- |
184 // ----------------------------------------------------------------------------- |
185 // Pointer to the bounding box. |
185 // Pointer to the bounding box. |
186 extern bbox g_BBox; |
186 extern bbox g_BBox; |
187 |
187 |
188 // ----------------------------------------------------------------------------- |
188 // ----------------------------------------------------------------------------- |
189 // Vector of all currently opened files. |
189 // Vector of all currently opened files. |
190 extern vector<OpenFile*> g_loadedFiles; |
190 extern vector<LDOpenFile*> g_loadedFiles; |
191 |
191 |
192 // ----------------------------------------------------------------------------- |
192 // ----------------------------------------------------------------------------- |
193 // Pointer to the main application. |
193 // Pointer to the main application. |
194 extern const QApplication* g_app; |
194 extern const QApplication* g_app; |
195 |
195 |