You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/dialogs/codegenerationpolicypage.h

57 lines
1.7 KiB

/***************************************************************************
codegenerationpolicypage.h - description
-------------------
begin : Tue Jul 29 2003
copyright : (C) 2003 by Brian Thomas
email : brian.thomas@gsfc.nasa.gov
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
* copyright (C) 2004-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef CODEGENERATIONPOLICYPAGE_H
#define CODEGENERATIONPOLICYPAGE_H
#include <tqwidget.h>
#include "codegenerationpolicybase.h"
class CodeGenPolicyExt;
/**
* @author Brian Thomas
*/
class CodeGenerationPolicyPage : public CodeGenerationPolicyBase {
TQ_OBJECT
public:
explicit CodeGenerationPolicyPage (TQWidget *parent=0, const char *name=0, CodeGenPolicyExt * policy = 0);
virtual ~CodeGenerationPolicyPage();
void setDefaults();
protected:
CodeGenPolicyExt * m_parentPolicy;
private:
public slots:
virtual void apply();
};
#endif