1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef Fireworks_Core_FWEDProductRepresentationChecker_h
#define Fireworks_Core_FWEDProductRepresentationChecker_h
// -*- C++ -*-
//
// Package: Core
// Class : FWEDProductRepresentationChecker
//
/**\class FWEDProductRepresentationChecker FWEDProductRepresentationChecker.h Fireworks/Core/interface/FWEDProductRepresentationChecker.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Tue Nov 11 15:20:05 EST 2008
//
// system include files
#include <string>
// user include files
#include "Fireworks/Core/interface/FWRepresentationCheckerBase.h"
// forward declarations
class FWEDProductRepresentationChecker : public FWRepresentationCheckerBase {
public:
FWEDProductRepresentationChecker(const std::string& iTypeidName,
const std::string& iPurpose,
unsigned int iBitPackedViews,
bool iRepresentsSubPart,
bool iRequiresFF = false);
// ---------- const member functions ---------------------
FWRepresentationInfo infoFor(const std::string& iTypeName) const override;
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
FWEDProductRepresentationChecker(const FWEDProductRepresentationChecker&) = delete; // stop default
const FWEDProductRepresentationChecker& operator=(const FWEDProductRepresentationChecker&) = delete; // stop default
private:
// ---------- member data --------------------------------
const std::string m_typeidName;
};
#endif
|