00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef TSE3_LISTEN_APP_PARTSELECTION_H
00018 #define TSE3_LISTEN_APP_PARTSELECTION_H
00019
00020 namespace TSE3
00021 {
00022 class Part;
00023
00024 namespace App
00025 {
00026 class PartSelection;
00027
00035 class PartSelectionListener
00036 {
00037 public:
00038 typedef PartSelection notifier_type;
00039
00040 virtual void PartSelection_Selected
00041 (PartSelection *, TSE3::Part *, bool ) {}
00042 };
00043 }
00044 }
00045
00046 #endif