00001
#if !defined(__EDIT_HPP)
00002
#define __EDIT_HPP
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
#if !defined(__COMMON_HPP)
00025
#include <corelinux/Common.hpp>
00026
#endif
00027
00028
#if !defined(__SUBJECTOBSERVER_HPP)
00029
#include <SubjectObserver.hpp>
00030
#endif
00031
00032 DECLARE_CLASS(
ListMediator );
00033 DECLARE_CLASS(
Edit );
00034
00040 class Edit :
public SubjectObserver
00041 {
00042
00043
public:
00044
00045
00046
00047
00048
00050
00051
Edit(
void );
00052
00054
00055
virtual ~Edit(
void );
00056
00057
00058
00059
00060
00062
00063
bool operator==(
EditCref )
const;
00064
00065
00066
00067
00068
00069
00070
00071
00079
virtual void event( CORELINUX( Event<corelinux::Identifier> ) * )
throw ( CORELINUX(NullPointerException) );
00080
00081
00082
protected:
00084
00085
Edit(
EditCref )
throw ( CORELINUX( Assertion ) );
00086
00088
00089
EditRef operator=(
EditCref )
throw ( CORELINUX( Assertion ) );
00090
00091
00092
private:
00093
00094
00095 };
00096
00097
#endif // if !defined(__EDIT_HPP)
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108