reaction-prop-dlg.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef GCHEMPAINT_REACTION_PROP_DLG_H
00026 #define GCHEMPAINT_REACTION_PROP_DLG_H
00027
00028 #include <gcu/dialog.h>
00029 #include <gcu/object.h>
00030 #include <gcu/macros.h>
00031
00033 namespace gcp {
00034
00035 class ReactionArrow;
00036
00037 class ReactionProp;
00038
00045 class ReactionPropDlg: public gcu::Dialog
00046 {
00047 public:
00054 ReactionPropDlg (ReactionArrow *arrow, ReactionProp *prop);
00058 virtual ~ReactionPropDlg ();
00059
00060 private:
00061 ReactionArrow *m_Arrow;
00062 ReactionProp *m_Prop;
00063 };
00064
00065 }
00066
00067 #endif // GCHEMPAINT_REACTION_PROP_H
00068