NCBI C++ ToolKit
Gb_qual_.hpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 /* $Id$
2  * ===========================================================================
3  *
4  * PUBLIC DOMAIN NOTICE
5  * National Center for Biotechnology Information
6  *
7  * This software/database is a "United States Government Work" under the
8  * terms of the United States Copyright Act. It was written as part of
9  * the author's official duties as a United States Government employee and
10  * thus cannot be copyrighted. This software/database is freely available
11  * to the public for use. The National Library of Medicine and the U.S.
12  * Government have not placed any restriction on its use or reproduction.
13  *
14  * Although all reasonable efforts have been taken to ensure the accuracy
15  * and reliability of the software and data, the NLM and the U.S.
16  * Government do not and cannot warrant the performance or results that
17  * may be obtained by using this software or data. The NLM and the U.S.
18  * Government disclaim all warranties, express or implied, including
19  * warranties of performance, merchantability or fitness for any particular
20  * purpose.
21  *
22  * Please cite the author in any work or product based on this material.
23  *
24  * ===========================================================================
25  *
26  */
27 
28 /// @file Gb_qual_.hpp
29 /// Data storage class.
30 ///
31 /// This file was generated by application DATATOOL
32 /// using the following specifications:
33 /// <a href="/IEB/ToolBox/CPP_DOC/lxr/source/src/objects/seqfeat/seqfeat.asn">seqfeat.asn</a>
34 /// and additional tune-up parameters:
35 /// <a href="/IEB/ToolBox/CPP_DOC/lxr/source/src/objects/seqfeat/seqfeat.def">seqfeat.def</a>
36 ///
37 /// ATTENTION:
38 /// Don't edit or commit this file into CVS as this file will
39 /// be overridden (by DATATOOL) without warning!
40 
41 #ifndef OBJECTS_SEQFEAT_GB_QUAL_BASE_HPP
42 #define OBJECTS_SEQFEAT_GB_QUAL_BASE_HPP
43 
44 // standard includes
45 #include <serial/serialbase.hpp>
46 
47 // generated includes
48 #include <string>
49 
51 
52 #ifndef BEGIN_objects_SCOPE
53 # define BEGIN_objects_SCOPE BEGIN_SCOPE(objects)
54 # define END_objects_SCOPE END_SCOPE(objects)
55 #endif
56 BEGIN_objects_SCOPE // namespace ncbi::objects::
57 
58 
59 // generated classes
60 
61 
62 /** @addtogroup dataspec_NCBI_Seqfeat
63  *
64  * @{
65  */
66 
67 /////////////////////////////////////////////////////////////////////////////
68 ///
69 /// CGb_qual_Base --
70 ///
71 
73 {
75 public:
76  // constructor
77  CGb_qual_Base(void);
78  // destructor
79  virtual ~CGb_qual_Base(void);
80 
81  // type info
83 
84  // types
85  typedef string TQual;
86  typedef string TVal;
87 
88  // member index
89  enum class E_memberIndex {
90  e__allMandatory = 0,
91  e_qual,
92  e_val
93  };
95 
96  // getters
97  // setters
98 
99  /// Check if a value has been assigned to Qual data member.
100  ///
101  /// Data member Qual is mandatory;
102  /// its type is defined as 'typedef string TQual'
103  /// @return
104  /// - true, if a value has been assigned.
105  /// - false, otherwise.
106  bool IsSetQual(void) const;
107 
108  /// Check if it is safe to call GetQual method.
109  ///
110  /// @return
111  /// - true, if the data member is getatable.
112  /// - false, otherwise.
113  bool CanGetQual(void) const;
114 
115  /// Reset Qual data member.
116  void ResetQual(void);
117 
118  /// Get the Qual member data.
119  ///
120  /// @return
121  /// Reference to the member data.
122  const TQual& GetQual(void) const;
123 
124  /// Assign a value to Qual data member.
125  ///
126  /// @param value
127  /// Value to assign
128  void SetQual(const TQual& value);
129  void SetQual(TQual&& value);
130 
131  /// Assign a value to Qual data member.
132  ///
133  /// @return
134  /// Reference to the data value.
135  TQual& SetQual(void);
136 
137  /// Check if a value has been assigned to Val data member.
138  ///
139  /// Data member Val is mandatory;
140  /// its type is defined as 'typedef string TVal'
141  /// @return
142  /// - true, if a value has been assigned.
143  /// - false, otherwise.
144  bool IsSetVal(void) const;
145 
146  /// Check if it is safe to call GetVal method.
147  ///
148  /// @return
149  /// - true, if the data member is getatable.
150  /// - false, otherwise.
151  bool CanGetVal(void) const;
152 
153  /// Reset Val data member.
154  void ResetVal(void);
155 
156  /// Get the Val member data.
157  ///
158  /// @return
159  /// Reference to the member data.
160  const TVal& GetVal(void) const;
161 
162  /// Assign a value to Val data member.
163  ///
164  /// @param value
165  /// Value to assign
166  void SetVal(const TVal& value);
167  void SetVal(TVal&& value);
168 
169  /// Assign a value to Val data member.
170  ///
171  /// @return
172  /// Reference to the data value.
173  TVal& SetVal(void);
174 
175  /// Reset the whole object
176  virtual void Reset(void);
177 
178 
179 private:
180  // Prohibit copy constructor and assignment operator
183 
184  // data
185  Uint4 m_set_State[1];
186  string m_Qual;
187  string m_Val;
188 };
189 
190 /* @} */
191 
192 
193 
194 
195 
196 ///////////////////////////////////////////////////////////
197 ///////////////////// inline methods //////////////////////
198 ///////////////////////////////////////////////////////////
199 inline
200 bool CGb_qual_Base::IsSetQual(void) const
201 {
202  return ((m_set_State[0] & 0x3) != 0);
203 }
204 
205 inline
207 {
208  return IsSetQual();
209 }
210 
211 inline
213 {
214  if (!CanGetQual()) {
215  ThrowUnassigned(0);
216  }
217  return m_Qual;
218 }
219 
220 inline
222 {
223  m_Qual = value;
224  m_set_State[0] |= 0x3;
225 }
226 
227 inline
229 {
230  m_Qual = std::forward<CGb_qual_Base::TQual>(value);
231  m_set_State[0] |= 0x3;
232 }
233 
234 inline
236 {
237 #ifdef _DEBUG
238  if (!IsSetQual()) {
240  }
241 #endif
242  m_set_State[0] |= 0x1;
243  return m_Qual;
244 }
245 
246 inline
247 bool CGb_qual_Base::IsSetVal(void) const
248 {
249  return ((m_set_State[0] & 0xc) != 0);
250 }
251 
252 inline
253 bool CGb_qual_Base::CanGetVal(void) const
254 {
255  return IsSetVal();
256 }
257 
258 inline
260 {
261  if (!CanGetVal()) {
262  ThrowUnassigned(1);
263  }
264  return m_Val;
265 }
266 
267 inline
269 {
270  m_Val = value;
271  m_set_State[0] |= 0xc;
272 }
273 
274 inline
276 {
277  m_Val = std::forward<CGb_qual_Base::TVal>(value);
278  m_set_State[0] |= 0xc;
279 }
280 
281 inline
283 {
284 #ifdef _DEBUG
285  if (!IsSetVal()) {
287  }
288 #endif
289  m_set_State[0] |= 0x4;
290  return m_Val;
291 }
292 
293 ///////////////////////////////////////////////////////////
294 ////////////////// end of inline methods //////////////////
295 ///////////////////////////////////////////////////////////
296 
297 
298 
299 
300 
301 END_objects_SCOPE // namespace ncbi::objects::
302 
304 
305 
306 #endif // OBJECTS_SEQFEAT_GB_QUAL_BASE_HPP
CGb_qual_Base –.
Definition: Gb_qual_.hpp:73
Base class for all serializable objects.
Definition: serialbase.hpp:150
void ThrowUnassigned(TMemberIndex index) const
static string UnassignedString(void)
Definition: serialbase.hpp:175
uint32_t Uint4
4-byte (32-bit) unsigned integer
Definition: ncbitype.h:103
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
#define NCBI_SEQFEAT_EXPORT
Definition: ncbi_export.h:768
TQual & SetQual(void)
Assign a value to Qual data member.
Definition: Gb_qual_.hpp:235
CGb_qual_Base(const CGb_qual_Base &)
const TVal & GetVal(void) const
Get the Val member data.
Definition: Gb_qual_.hpp:259
TVal & SetVal(void)
Assign a value to Val data member.
Definition: Gb_qual_.hpp:282
string TVal
Definition: Gb_qual_.hpp:86
string TQual
Definition: Gb_qual_.hpp:85
Uint4 m_set_State[1]
Definition: Gb_qual_.hpp:185
Tparent::CMemberIndex< E_memberIndex, 3 > TmemberIndex
Definition: Gb_qual_.hpp:94
string m_Qual
Definition: Gb_qual_.hpp:186
bool CanGetVal(void) const
Check if it is safe to call GetVal method.
Definition: Gb_qual_.hpp:253
DECLARE_INTERNAL_TYPE_INFO()
bool IsSetQual(void) const
Check if a value has been assigned to Qual data member.
Definition: Gb_qual_.hpp:200
string m_Val
Definition: Gb_qual_.hpp:187
CGb_qual_Base & operator=(const CGb_qual_Base &)
const TQual & GetQual(void) const
Get the Qual member data.
Definition: Gb_qual_.hpp:212
bool IsSetVal(void) const
Check if a value has been assigned to Val data member.
Definition: Gb_qual_.hpp:247
bool CanGetQual(void) const
Check if it is safe to call GetQual method.
Definition: Gb_qual_.hpp:206
CSerialObject Tparent
Definition: Gb_qual_.hpp:74
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1227
Modified on Mon May 13 04:36:13 2024 by modify_doxy.py rev. 669887