source: molecuilder/src/UIElements/MainWindow.hpp@ 3e8325

Last change on this file since 3e8325 was 34ff5e6, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added support for creating a main window using the UIFactory.

  • Property mode set to 100644
File size: 372 bytes
Line 
1/*
2 * Window.hpp
3 *
4 * Created on: Jan 7, 2010
5 * Author: crueger
6 */
7
8#ifndef MAINWINDOW_HPP_
9#define MAINWINDOW_HPP_
10
11class MoleculeListClass;
12class config;
13class periodentafel;
14
15class MainWindow
16{
17public:
18 MainWindow();
19 virtual ~MainWindow();
20
21 virtual void display(MoleculeListClass *, config *, periodentafel *, char *)=0;
22
23};
24
25#endif /* MAINWINDOW_HPP_ */
Note: See TracBrowser for help on using the repository browser.