33 lines
1.2 KiB
C
Raw Normal View History

2004-02-08 17:50:55 +00:00
/***************************************************************************
msopen.h - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-02-08 17:50:55 +00:00
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MSOPEN_H
#define MSOPEN_H
#include "component.h"
class MSopen : public Component {
public:
2004-06-06 14:13:59 +00:00
MSopen();
~MSopen();
Component* newOne();
2005-06-23 06:06:40 +00:00
static Element* info(QString&, char* &, bool getNewOne=false);
2004-02-08 17:50:55 +00:00
};
#endif