NCBI C++ ToolKit
Classes | Public Types | Public Member Functions | Private Types | Private Member Functions | List of all members
CUser_field Class Reference

Represents ASN.1 type User-field defined in file general.asn

Search Toolkit Book for CUser_field

#include <objects/general/User_field.hpp>

+ Inheritance diagram for CUser_field:
+ Collaboration diagram for CUser_field:

Classes

struct  SFieldNameChain
 For functions that don't use delims, we instead use a chain of names. More...
 

Public Types

enum  EParseField { eParse_String , eParse_Number }
 
enum  EFieldMapFlags { fFieldMapFlags_ExcludeThis = (1<<0) }
 Flags that affect behavior of TMapFieldNameToRef functions. More...
 
typedef map< SFieldNameChain, CConstRef< CUser_field > > TMapFieldNameToRef
 Maps field names like the input for GetFieldRef to the user-field. More...
 
typedef int TFieldMapFlags
 holds bitwise OR of "EFieldMapFlags" More...
 
- Public Types inherited from CUser_field_Base
enum class  E_memberIndex { e__allMandatory = 0 , e_label , e_num , e_data }
 
typedef CObject_id TLabel
 
typedef int TNum
 
typedef C_Data TData
 
typedef Tparent::CMemberIndex< E_memberIndex, 4 > TmemberIndex
 
- Public Types inherited from CObject
enum  EAllocFillMode { eAllocFillNone = 1 , eAllocFillZero , eAllocFillPattern }
 Control filling of newly allocated memory. More...
 
typedef CObjectCounterLocker TLockerType
 Default locker type for CRef. More...
 
typedef atomic< Uint8TCounter
 Counter type is CAtomiCounter. More...
 
typedef Uint8 TCount
 Alias for value type of counter. More...
 

Public Member Functions

 CUser_field (void)
 
 ~CUser_field (void)
 
CUser_fieldSetInt (int value)
 set value More...
 
CUser_fieldSetInt8 (Int8 value)
 
CUser_fieldSetGi (TGi gi)
 
CUser_fieldSetDouble (double value)
 
CUser_fieldSetBool (bool value)
 
CUser_fieldSetString (const char *value)
 
CUser_fieldSetString (const string &value)
 
CUser_fieldSetValue (int value)
 set a data field to a given value Int8 and TGi values can be stored into 'str' field if the value doesn't fit into 'int' field More...
 
CUser_fieldSetValue (Int8 value)
 
CUser_fieldSetValue (TGi value)
 
CUser_fieldSetValue (double value)
 
CUser_fieldSetValue (bool value)
 
CUser_fieldSetValue (const char *value)
 
CUser_fieldSetValue (const string &value)
 
CUser_fieldSetValue (const char *value, EParseField parse)
 
CUser_fieldSetValue (const string &value, EParseField parse)
 
CUser_fieldSetValue (const vector< int > &value)
 
CUser_fieldSetValue (const vector< double > &value)
 
CUser_fieldSetValue (const vector< string > &value)
 
CUser_fieldSetValue (CUser_object &value)
 
CUser_fieldSetValue (const vector< CRef< CUser_object > > &value)
 
CUser_fieldSetValue (const vector< CRef< CUser_field > > &value)
 
int GetInt (void) const
 get value More...
 
Int8 GetInt8 (void) const
 
TGi GetGi (void) const
 
bool GetBool (void) const
 
double GetDouble (void) const
 
const stringGetString (void) const
 
template<class Type >
Type GetValue (void) const
 
CUser_fieldAddField (const string &label, int value)
 add fields to the current user field More...
 
CUser_fieldAddField (const string &label, Int8 value)
 
CUser_fieldAddField (const string &label, TGi value)
 
CUser_fieldAddField (const string &label, double value)
 
CUser_fieldAddField (const string &label, bool value)
 
CUser_fieldAddField (const string &label, const char *value)
 
CUser_fieldAddField (const string &label, const string &value)
 
CUser_fieldAddField (const string &label, const char *value, EParseField field)
 
CUser_fieldAddField (const string &label, const string &value, EParseField field)
 add fields to the current user field More...
 
CUser_fieldAddField (const string &label, const vector< string > &value)
 
CUser_fieldAddField (const string &label, const vector< int > &value)
 
CUser_fieldAddField (const string &label, const vector< double > &value)
 
CUser_fieldAddField (const string &label, CUser_object &value)
 
CUser_fieldAddField (const string &label, const vector< CRef< CUser_object > > &value)
 
CUser_fieldAddField (const string &label, const vector< CRef< CUser_field > > &value)
 
void SetNumFromSize (size_t value)
 Set num field from a container size Check for overflow and throw CSerialException::eOverflow if the size doesn't fit into the field. More...
 
const CUser_fieldGetField (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase) const
 Access a named field in this user field. More...
 
CConstRef< CUser_fieldGetFieldRef (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase) const
 Return a field reference representing the tokenized key, or a NULL reference if the key doesn't exist. More...
 
void GetFieldsMap (CUser_field::TMapFieldNameToRef &out_mapFieldNameToRef, TFieldMapFlags fFieldMapFlags=0, const SFieldNameChain &parent_name=SFieldNameChain()) const
 Recursively get the map of field names like the input for GetFieldRef to the user-field. More...
 
CUser_fieldSetField (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase)
 Access a named field in this user field. More...
 
CRef< CUser_fieldSetFieldRef (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase)
 Return a field reference representing the tokenized key, or a NULL reference if the key cannot be created for some reason. More...
 
bool HasField (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase) const
 Verify that a named field exists. More...
 
bool DeleteField (const string &str, const string &delim=".", NStr::ECase use_case=NStr::eCase)
 Delete the named field. More...
 
template<>
int GetValue (void) const
 
template<>
Int8 GetValue (void) const
 
template<>
double GetValue (void) const
 
template<>
bool GetValue (void) const
 
template<>
string GetValue (void) const
 
template<>
TGi GetValue (void) const
 
- Public Member Functions inherited from CUser_field_Base
 CUser_field_Base (void)
 
virtual ~CUser_field_Base (void)
 
 DECLARE_INTERNAL_TYPE_INFO ()
 
bool IsSetLabel (void) const
 field label Check if a value has been assigned to Label data member. More...
 
bool CanGetLabel (void) const
 Check if it is safe to call GetLabel method. More...
 
void ResetLabel (void)
 Reset Label data member. More...
 
const TLabelGetLabel (void) const
 Get the Label member data. More...
 
void SetLabel (TLabel &value)
 Assign a value to Label data member. More...
 
TLabelSetLabel (void)
 Assign a value to Label data member. More...
 
bool IsSetNum (void) const
 required for strs, ints, reals, oss Check if a value has been assigned to Num data member. More...
 
bool CanGetNum (void) const
 Check if it is safe to call GetNum method. More...
 
void ResetNum (void)
 Reset Num data member. More...
 
TNum GetNum (void) const
 Get the Num member data. More...
 
void SetNum (TNum value)
 Assign a value to Num data member. More...
 
TNumSetNum (void)
 Assign a value to Num data member. More...
 
bool IsSetData (void) const
 Check if a value has been assigned to Data data member. More...
 
bool CanGetData (void) const
 Check if it is safe to call GetData method. More...
 
void ResetData (void)
 Reset Data data member. More...
 
const TDataGetData (void) const
 Get the Data member data. More...
 
void SetData (TData &value)
 Assign a value to Data data member. More...
 
TDataSetData (void)
 Assign a value to Data data member. More...
 
virtual void Reset (void)
 Reset the whole object. More...
 
- Public Member Functions inherited from CSerialObject
 CSerialObject (void)
 
virtual ~CSerialObject (void)
 
virtual const CTypeInfoGetThisTypeInfo (void) const =0
 
virtual void Assign (const CSerialObject &source, ESerialRecursionMode how=eRecursive)
 Set object to copy of another one. More...
 
virtual bool Equals (const CSerialObject &object, ESerialRecursionMode how=eRecursive) const
 Check if both objects contain the same values. More...
 
virtual void DebugDump (CDebugDumpContext ddc, unsigned int depth) const
 Define method for dumping debug information. More...
 
void ThrowUnassigned (TMemberIndex index) const
 
void ThrowUnassigned (TMemberIndex index, const char *file_name, int file_line) const
 
bool HasNamespaceName (void) const
 Check if object data type has namespace name. More...
 
const stringGetNamespaceName (void) const
 Get namespace name. More...
 
bool HasNamespacePrefix (void) const
 Check if data type has namespace prefix. More...
 
const stringGetNamespacePrefix (void) const
 Get namespace prefix. More...
 
- Public Member Functions inherited from CObject
 CObject (void)
 Constructor. More...
 
 CObject (const CObject &src)
 Copy constructor. More...
 
virtual ~CObject (void)
 Destructor. More...
 
CObjectoperator= (const CObject &src) THROWS_NONE
 Assignment operator. More...
 
bool CanBeDeleted (void) const THROWS_NONE
 Check if object can be deleted. More...
 
bool IsAllocatedInPool (void) const THROWS_NONE
 Check if object is allocated in memory pool (not system heap) More...
 
bool Referenced (void) const THROWS_NONE
 Check if object is referenced. More...
 
bool ReferencedOnlyOnce (void) const THROWS_NONE
 Check if object is referenced only once. More...
 
void AddReference (void) const
 Add reference to object. More...
 
void RemoveReference (void) const
 Remove reference to object. More...
 
void ReleaseReference (void) const
 Remove reference without deleting object. More...
 
virtual void DoNotDeleteThisObject (void)
 Mark this object as not allocated in heap – do not delete this object. More...
 
virtual void DoDeleteThisObject (void)
 Mark this object as allocated in heap – object can be deleted. More...
 
void * operator new (size_t size)
 Define new operator for memory allocation. More...
 
void * operator new[] (size_t size)
 Define new[] operator for 'array' memory allocation. More...
 
void operator delete (void *ptr)
 Define delete operator for memory deallocation. More...
 
void operator delete[] (void *ptr)
 Define delete[] operator for memory deallocation. More...
 
void * operator new (size_t size, void *place)
 Define new operator. More...
 
void operator delete (void *ptr, void *place)
 Define delete operator. More...
 
void * operator new (size_t size, CObjectMemoryPool *place)
 Define new operator using memory pool. More...
 
void operator delete (void *ptr, CObjectMemoryPool *place)
 Define delete operator. More...
 
- Public Member Functions inherited from CDebugDumpable
 CDebugDumpable (void)
 
virtual ~CDebugDumpable (void)
 
void DebugDumpText (ostream &out, const string &bundle, unsigned int depth) const
 
void DebugDumpFormat (CDebugDumpFormatter &ddf, const string &bundle, unsigned int depth) const
 
void DumpToConsole (void) const
 

Private Types

typedef CUser_field_Base Tparent
 

Private Member Functions

 CUser_field (const CUser_field &value)
 
CUser_fieldoperator= (const CUser_field &value)
 

Additional Inherited Members

- Static Public Member Functions inherited from CSerialObject
static void SetVerifyDataThread (ESerialVerifyData verify)
 
static void SetVerifyDataGlobal (ESerialVerifyData verify)
 
static string UnassignedString (void)
 
static CStringUTF8 UnassignedStringUTF8 (void)
 
static char UnassignedByte (void)
 
- Static Public Member Functions inherited from CObject
static NCBI_XNCBI_EXPORT void ThrowNullPointerException (void)
 Define method to throw null pointer exception. More...
 
static NCBI_XNCBI_EXPORT void ThrowNullPointerException (const type_info &type)
 
static EAllocFillMode GetAllocFillMode (void)
 
static void SetAllocFillMode (EAllocFillMode mode)
 
static void SetAllocFillMode (const string &value)
 Set mode from configuration parameter value. More...
 
- Static Public Member Functions inherited from CDebugDumpable
static void EnableDebugDump (bool on)
 
- Static Public Attributes inherited from CSerialObject
static const char * ms_UnassignedStr = "<*unassigned*>"
 
static const char ms_UnassignedByte = char(0xcd)
 
- Static Public Attributes inherited from CObject
static const TCount eCounterBitsCanBeDeleted = 1 << 0
 Define possible object states. More...
 
static const TCount eCounterBitsInPlainHeap = 1 << 1
 Heap signature was found. More...
 
static const TCount eCounterBitsPlaceMask
 Mask for 'in heap' state flags. More...
 
static const int eCounterStep = 1 << 2
 Skip over the "in heap" bits. More...
 
static const TCount eCounterValid = TCount(1) << (sizeof(TCount) * 8 - 2)
 Minimal value for valid objects (reference counter is zero) Must be a single bit value. More...
 
static const TCount eCounterStateMask
 Valid object, and object in heap. More...
 
- Protected Member Functions inherited from CObject
virtual void DeleteThis (void)
 Virtual method "deleting" this object. More...
 

Detailed Description

Definition at line 50 of file User_field.hpp.

Member Typedef Documentation

◆ TFieldMapFlags

holds bitwise OR of "EFieldMapFlags"

Definition at line 174 of file User_field.hpp.

◆ TMapFieldNameToRef

Maps field names like the input for GetFieldRef to the user-field.

Definition at line 168 of file User_field.hpp.

◆ Tparent

Definition at line 52 of file User_field.hpp.

Member Enumeration Documentation

◆ EFieldMapFlags

Flags that affect behavior of TMapFieldNameToRef functions.

Enumerator
fFieldMapFlags_ExcludeThis 

= 0x1 (excludes this CUser_field's name and mapping to self from results)

Definition at line 171 of file User_field.hpp.

◆ EParseField

Enumerator
eParse_String 

Add string even if all numbers.

eParse_Number 

Parse a real or integer number, otherwise string.

Definition at line 59 of file User_field.hpp.

Constructor & Destructor Documentation

◆ CUser_field() [1/2]

CUser_field::CUser_field ( void  )
inline

Definition at line 231 of file User_field.hpp.

Referenced by AddField(), and SetFieldRef().

◆ ~CUser_field()

CUser_field::~CUser_field ( void  )

Definition at line 52 of file User_field.cpp.

◆ CUser_field() [2/2]

CUser_field::CUser_field ( const CUser_field value)
private

Member Function Documentation

◆ AddField() [1/15]

CUser_field & CUser_field::AddField ( const string label,
bool  value 
)

◆ AddField() [2/15]

CUser_field & CUser_field::AddField ( const string label,
const char *  value 
)

Definition at line 77 of file User_field.cpp.

References AddField(), eParse_String, label, and rapidjson::value.

◆ AddField() [3/15]

CUser_field & CUser_field::AddField ( const string label,
const char *  value,
EParseField  field 
)

Definition at line 84 of file User_field.cpp.

References AddField(), label, and rapidjson::value.

◆ AddField() [4/15]

CUser_field & CUser_field::AddField ( const string label,
const string value 
)

Definition at line 70 of file User_field.cpp.

References AddField(), eParse_String, label, and rapidjson::value.

◆ AddField() [5/15]

CUser_field & CUser_field::AddField ( const string label,
const string value,
EParseField  field 
)

◆ AddField() [6/15]

CUser_field & CUser_field::AddField ( const string label,
const vector< CRef< CUser_field > > &  value 
)

◆ AddField() [7/15]

CUser_field & CUser_field::AddField ( const string label,
const vector< CRef< CUser_object > > &  value 
)

◆ AddField() [8/15]

CUser_field & CUser_field::AddField ( const string label,
const vector< double > &  value 
)

◆ AddField() [9/15]

CUser_field & CUser_field::AddField ( const string label,
const vector< int > &  value 
)

◆ AddField() [10/15]

CUser_field& CUser_field::AddField ( const string label,
const vector< string > &  value 
)

◆ AddField() [11/15]

CUser_field & CUser_field::AddField ( const string label,
CUser_object value 
)

◆ AddField() [12/15]

CUser_field & CUser_field::AddField ( const string label,
double  value 
)

◆ AddField() [13/15]

CUser_field & CUser_field::AddField ( const string label,
int  value 
)

◆ AddField() [14/15]

CUser_field & CUser_field::AddField ( const string label,
Int8  value 
)

◆ AddField() [15/15]

CUser_field & CUser_field::AddField ( const string label,
TGi  value 
)

◆ DeleteField()

bool CUser_field::DeleteField ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
)

Delete the named field.

delete a named field.

return true if successful. false if field doesn't exist.

Definition at line 404 of file User_field.cpp.

References NStr::Equal(), f(), NStr::fSplit_Tokenize, CUser_field_Base::GetData(), CUser_field_Base::GetLabel(), CObject_id_Base::GetStr(), CUser_field_Base::C_Data::IsFields(), CObject_id_Base::IsStr(), ITERATE, last(), NON_CONST_ITERATE, NStr::Split(), and str().

Referenced by CRegistryFile::DeleteField().

◆ GetBool()

bool CUser_field::GetBool ( void  ) const
inline

◆ GetDouble()

double CUser_field::GetDouble ( void  ) const
inline

Definition at line 334 of file User_field.hpp.

References CUser_field_Base::GetData(), and CUser_field_Base::C_Data::GetReal().

Referenced by GetValue().

◆ GetField()

const CUser_field & CUser_field::GetField ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
) const

◆ GetFieldRef()

CConstRef< CUser_field > CUser_field::GetFieldRef ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
) const

◆ GetFieldsMap()

void CUser_field::GetFieldsMap ( CUser_field::TMapFieldNameToRef out_mapFieldNameToRef,
TFieldMapFlags  fFieldMapFlags = 0,
const SFieldNameChain parent_name = SFieldNameChain() 
) const

Recursively get the map of field names like the input for GetFieldRef to the user-field.

Parameters
out_mapFieldNameToRefThe results are put into here, but it becomes INVALID if this CUser_field or any of its descendents change their label. It will NOT be cleared before more data is added, and in that case would overwrite any item which has the same key.
fFieldMapFlagsFlags that affect behavior of function.
parent_nameOutside users probably don't need this. It's really for internal recursive calls when building the map.

Definition at line 295 of file User_field.cpp.

References ConstRef(), fFieldMapFlags_ExcludeThis, FIELD_IS_SET_AND_IS, CUser_field_Base::GetData(), CUser_field_Base::GetLabel(), CObject_id_Base::GetStr(), map_checker< Container >::insert(), and ITERATE.

Referenced by BOOST_AUTO_TEST_CASE(), and CCommentItem::GetStringForRefSeqGenome().

◆ GetGi()

TGi CUser_field::GetGi ( void  ) const
inline

Definition at line 395 of file User_field.hpp.

References GI_FROM.

Referenced by GetValue().

◆ GetInt()

int CUser_field::GetInt ( void  ) const
inline

◆ GetInt8()

Int8 CUser_field::GetInt8 ( void  ) const

Definition at line 549 of file User_field.cpp.

References data, CUser_field_Base::GetData(), and kMaxAsReal.

Referenced by GetValue().

◆ GetString()

const string & CUser_field::GetString ( void  ) const
inline

◆ GetValue() [1/7]

template<class Type >
Type CUser_field::GetValue ( void  ) const

◆ GetValue() [2/7]

template<>
int CUser_field::GetValue ( void  ) const
inline

Definition at line 356 of file User_field.hpp.

References GetInt().

◆ GetValue() [3/7]

template<>
Int8 CUser_field::GetValue ( void  ) const
inline

Definition at line 364 of file User_field.hpp.

References GetInt8().

◆ GetValue() [4/7]

template<>
double CUser_field::GetValue ( void  ) const
inline

Definition at line 372 of file User_field.hpp.

References GetDouble().

◆ GetValue() [5/7]

template<>
bool CUser_field::GetValue ( void  ) const
inline

Definition at line 380 of file User_field.hpp.

References GetBool().

◆ GetValue() [6/7]

template<>
string CUser_field::GetValue ( void  ) const
inline

Definition at line 388 of file User_field.hpp.

References GetString().

◆ GetValue() [7/7]

template<>
TGi CUser_field::GetValue ( void  ) const
inline

Definition at line 404 of file User_field.hpp.

References GetGi().

◆ HasField()

bool CUser_field::HasField ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
) const

◆ operator=()

CUser_field& CUser_field::operator= ( const CUser_field value)
private

◆ SetBool()

CUser_field & CUser_field::SetBool ( bool  value)
inline

◆ SetDouble()

CUser_field & CUser_field::SetDouble ( double  value)
inline

◆ SetField()

CUser_field & CUser_field::SetField ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
)

Access a named field in this user field.

This will tokenize the string 'str' on the delimiters and recursively add fields where needed

Definition at line 334 of file User_field.cpp.

References f(), SetFieldRef(), and str().

Referenced by CTableImportColumn::LoadAsn().

◆ SetFieldRef()

CRef< CUser_field > CUser_field::SetFieldRef ( const string str,
const string delim = ".",
NStr::ECase  use_case = NStr::eCase 
)

◆ SetGi()

CUser_field & CUser_field::SetGi ( TGi  gi)
inline

◆ SetInt()

CUser_field & CUser_field::SetInt ( int  value)
inline

set value

Definition at line 245 of file User_field.hpp.

References CUser_field_Base::SetData(), CUser_field_Base::C_Data::SetInt(), and rapidjson::value.

Referenced by SetInt8(), and SetValue().

◆ SetInt8()

CUser_field & CUser_field::SetInt8 ( Int8  value)

Definition at line 481 of file User_field.cpp.

References NStr::NumericToString(), SetInt(), SetString(), and rapidjson::value.

Referenced by SetValue().

◆ SetNumFromSize()

void CUser_field::SetNumFromSize ( size_t  value)

Set num field from a container size Check for overflow and throw CSerialException::eOverflow if the size doesn't fit into the field.

Definition at line 492 of file User_field.cpp.

References max(), NCBI_THROW_FMT, CUser_field_Base::SetNum(), and rapidjson::value.

Referenced by s_PackAsUserField(), s_SetFieldsFromAnyContent(), and SetValue().

◆ SetString() [1/2]

CUser_field & CUser_field::SetString ( const char *  value)

◆ SetString() [2/2]

CUser_field & CUser_field::SetString ( const string value)
inline

◆ SetValue() [1/15]

CUser_field & CUser_field::SetValue ( bool  value)
inline

Definition at line 290 of file User_field.hpp.

References SetBool(), and rapidjson::value.

◆ SetValue() [2/15]

CUser_field & CUser_field::SetValue ( const char *  value)
inline

Definition at line 269 of file User_field.hpp.

References SetString(), and rapidjson::value.

◆ SetValue() [3/15]

CUser_field & CUser_field::SetValue ( const char *  value,
EParseField  parse 
)

Definition at line 470 of file User_field.cpp.

References SetValue(), and rapidjson::value.

◆ SetValue() [4/15]

CUser_field & CUser_field::SetValue ( const string value)
inline

Definition at line 276 of file User_field.hpp.

References SetString(), and rapidjson::value.

◆ SetValue() [5/15]

CUser_field & CUser_field::SetValue ( const string value,
EParseField  parse 
)

Definition at line 451 of file User_field.cpp.

References eParse_Number, SetValue(), NStr::StringToDouble(), and rapidjson::value.

◆ SetValue() [6/15]

CUser_field & CUser_field::SetValue ( const vector< CRef< CUser_field > > &  value)

◆ SetValue() [7/15]

CUser_field & CUser_field::SetValue ( const vector< CRef< CUser_object > > &  value)

◆ SetValue() [8/15]

CUser_field & CUser_field::SetValue ( const vector< double > &  value)

◆ SetValue() [9/15]

CUser_field & CUser_field::SetValue ( const vector< int > &  value)

◆ SetValue() [10/15]

CUser_field & CUser_field::SetValue ( const vector< string > &  value)

◆ SetValue() [11/15]

CUser_field & CUser_field::SetValue ( CUser_object value)

◆ SetValue() [12/15]

CUser_field & CUser_field::SetValue ( double  value)
inline

Definition at line 297 of file User_field.hpp.

References SetDouble(), and rapidjson::value.

◆ SetValue() [13/15]

CUser_field & CUser_field::SetValue ( int  value)
inline

set a data field to a given value Int8 and TGi values can be stored into 'str' field if the value doesn't fit into 'int' field

Definition at line 283 of file User_field.hpp.

References SetInt(), and rapidjson::value.

Referenced by AddField(), CUser_object::AddField(), CSegregateSetsBase::AddUserObject(), CWithdrawSequences::GetCommand(), s_SetVectorValue(), s_UpdateField(), SetGi(), SetString(), CEditingActionDescGenomeProjectId::SetValue(), CEditingActionDescStructCommDbName::SetValue(), SetValue(), and CUser_object::UpdateNcbiCleanup().

◆ SetValue() [14/15]

CUser_field & CUser_field::SetValue ( Int8  value)
inline

Definition at line 304 of file User_field.hpp.

References SetInt8(), and rapidjson::value.

◆ SetValue() [15/15]

CUser_field & CUser_field::SetValue ( TGi  value)
inline

Definition at line 319 of file User_field.hpp.

References SetGi(), and rapidjson::value.


The documentation for this class was generated from the following files:
Modified on Thu Apr 25 08:22:03 2024 by modify_doxy.py rev. 669887