secureswitools/swisistools/source/sisxlibrary/sisproperty.h
changeset 26 04d4a7bbc3e0
parent 0 ba25891c3a9e
equal deleted inserted replaced
25:98b66e4fb0be 26:04d4a7bbc3e0
    51 	virtual std::string Name () const;
    51 	virtual std::string Name () const;
    52 #ifdef GENERATE_ERRORS
    52 #ifdef GENERATE_ERRORS
    53 	virtual void CreateDefects ();
    53 	virtual void CreateDefects ();
    54 #endif // GENERATE_ERRORS
    54 #endif // GENERATE_ERRORS
    55 	
    55 	
    56 	void AddPackageEntry(std::wostream& aStream, bool aVerbose) const;
    56 	void AddPackageEntry(std::wostream& aStream, bool aVerbose, bool aCompatible) const;
    57 	
    57 	
    58 	inline TKey Key() const;
    58 	inline TKey Key() const;
    59 	inline TValue Value() const;
    59 	inline TValue Value() const;
    60 
    60 
    61 private:
    61 private:
   113 		iValue = rand ();
   113 		iValue = rand ();
   114 		}
   114 		}
   115 	}
   115 	}
   116 #endif // GENERATE_ERRORS
   116 #endif // GENERATE_ERRORS
   117 
   117 
   118 inline void CSISProperty::AddPackageEntry(std::wostream& aStream, bool aVerbose) const
   118 inline void CSISProperty::AddPackageEntry(std::wostream& aStream, bool aVerbose, bool aCompatible) const
   119 	{
   119 	{
   120 	(void)aVerbose;
   120 	(void)aVerbose;
   121 	aStream << iKey << L"=" << iValue;
   121 	aStream << iKey << L"=" << iValue;
   122 	}
   122 	}
   123 
   123