FWEventSelector

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// -*- C++ -*-
#ifndef Fireworks_Core_FWEventSelector_h
#define Fireworks_Core_FWEventSelector_h
//
// Package:     newVersion
// Class  :     FWEventSelector
//

// system include files
#include <string>

struct FWEventSelector {
  FWEventSelector(FWEventSelector* s) { *this = *s; }

  FWEventSelector() : m_enabled(false), m_selected(-1), m_updated(false) {}

  std::string m_expression;
  std::string m_description;
  std::string m_triggerProcess;
  bool m_enabled;
  int m_selected;
  bool m_updated;
};
#endif