Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:32

0001 #ifndef Fireworks_Core_FWModelChangeSignal_h
0002 #define Fireworks_Core_FWModelChangeSignal_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWModelChangeSignal
0007 //
0008 /**\class FWModelChangeSignal FWModelChangeSignal.h Fireworks/Core/interface/FWModelChangeSignal.h
0009 
0010    Description: <one line class summary>
0011 
0012    Usage:
0013     <usage>
0014 
0015  */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Mon Jan 21 19:30:17 EST 2008
0019 //
0020 
0021 // system include files
0022 #include <set>
0023 #include <vector>
0024 #include "sigc++/signal.h"
0025 
0026 // user include files
0027 
0028 // forward declarations
0029 class FWModelId;
0030 typedef std::set<FWModelId> FWModelIds;
0031 typedef sigc::signal<void(const FWModelIds&)> FWModelChangeSignal;
0032 #endif