Beispiel #1
0
 /// <summary>
 /// Private constructor, please use CreateSourceFile.... overloads to instantiate this type.
 /// </summary>
 private PipDataAtom(string value)
 {
     m_stringValue = value;
     m_idValue     = 0;
     DataType      = PipDataAtomType.String;
 }
Beispiel #2
0
 /// <summary>
 /// Private constructor, please use CreateSourceFile.... overloads to instantiate this type.
 /// </summary>
 private PipDataAtom(AbsolutePath value)
 {
     m_stringValue = null;
     m_idValue     = value.Value.Value;
     DataType      = PipDataAtomType.AbsolutePath;
 }
Beispiel #3
0
 /// <summary>
 /// Private constructor, please use CreateSourceFile.... overloads to instantiate this type.
 /// </summary>
 private PipDataAtom(StringId value)
 {
     m_stringValue = null;
     m_idValue     = value.Value;
     DataType      = PipDataAtomType.StringId;
 }