CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWExpressionValidator.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_FWExpressionValidator_h
2 #define Fireworks_Core_FWExpressionValidator_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : FWExpressionValidator
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Fri Aug 22 20:42:49 EDT 2008
19 //
20 
21 // system include files
22 #include <vector>
23 #include <boost/shared_ptr.hpp>
25 
26 // user include files
28 
29 // forward declarations
30 namespace fireworks {
31  class OptionNode;
32 }
33 
35 
36 public:
38  virtual ~FWExpressionValidator();
39 
40  // ---------- const member functions ---------------------
41  virtual void fillOptions(const char* iBegin, const char* iEnd,
42  std::vector<std::pair<boost::shared_ptr<std::string>, std::string> >& oOptions) const;
43 
44  // ---------- static member functions --------------------
45 
46  // ---------- member functions ---------------------------
47  void setType(const edm::TypeWithDict&);
48 
49 private:
50  FWExpressionValidator(const FWExpressionValidator&); // stop default
51 
52  const FWExpressionValidator& operator=(const FWExpressionValidator&); // stop default
53 
54  // ---------- member data --------------------------------
56  std::vector<boost::shared_ptr<fireworks::OptionNode> > m_options;
57  std::vector<boost::shared_ptr<fireworks::OptionNode> > m_builtins;
58 
59 };
60 
61 
62 #endif
void setType(const edm::TypeWithDict &)
std::vector< boost::shared_ptr< fireworks::OptionNode > > m_options
const FWExpressionValidator & operator=(const FWExpressionValidator &)
virtual void fillOptions(const char *iBegin, const char *iEnd, std::vector< std::pair< boost::shared_ptr< std::string >, std::string > > &oOptions) const
std::vector< boost::shared_ptr< fireworks::OptionNode > > m_builtins