File indexing completed on 2024-04-06 12:11:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #include "Fireworks/Core/interface/FWRepresentationCheckerBase.h"
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029 FWRepresentationCheckerBase::FWRepresentationCheckerBase(const std::string& iPurpose,
0030 unsigned int iBitPackedViews,
0031 bool iRepresentsSubPart,
0032 bool iRequiresFF)
0033 : m_purpose(iPurpose),
0034 m_bitPackedViews(iBitPackedViews),
0035 m_representsSubPart(iRepresentsSubPart),
0036 m_requiresFF(iRequiresFF) {}
0037
0038
0039
0040
0041
0042
0043 FWRepresentationCheckerBase::~FWRepresentationCheckerBase() {}
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064 const std::string& FWRepresentationCheckerBase::purpose() const { return m_purpose; }
0065
0066 unsigned int FWRepresentationCheckerBase::bitPackedViews() const { return m_bitPackedViews; }
0067
0068 bool FWRepresentationCheckerBase::representsSubPart() const { return m_representsSubPart; }
0069
0070
0071