Kaydet (Commit) 4e7325d7 authored tarafından Caolán McNamara's avatar Caolán McNamara

ditch other unused stream operators

üst d17279e6
...@@ -61,19 +61,6 @@ public: ...@@ -61,19 +61,6 @@ public:
} }
const String & GetCommand() const { return aCommand; } const String & GetCommand() const { return aCommand; }
const String & GetArgument() const { return aArgument; } const String & GetArgument() const { return aArgument; }
friend SvStream& operator >> ( SvStream& rStm, SvCommand & rThis )
{
rStm.ReadByteString( rThis.aCommand, gsl_getSystemTextEncoding() );
rStm.ReadByteString( rThis.aArgument, gsl_getSystemTextEncoding() );
return rStm;
}
friend SvStream& operator << ( SvStream& rStm, const SvCommand & rThis )
{
rStm.WriteByteString( rThis.aCommand, gsl_getSystemTextEncoding() );
rStm.WriteByteString( rThis.aArgument, gsl_getSystemTextEncoding() );
return rStm;
}
}; };
typedef ::std::vector< SvCommand > SvCommandList_impl; typedef ::std::vector< SvCommand > SvCommandList_impl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment