Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 140ac990 authored by Harald Martini's avatar Harald Martini
Browse files

store subresponse in abstract response

parent 2fd9fe57
Branches
Tags
No related merge requests found
......@@ -41,6 +41,9 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
{
public abstract class AbstractResponse : IResponse
{
#if DEBUG
private IResponse _subresponse;
#endif
public AbstractResponse(object source)
{
Source = source;
......@@ -61,6 +64,9 @@ namespace TUGraz.VectoCore.Models.Connector.Ports.Impl
public AbstractResponse(object source, IResponse subResponse)
{
#if DEBUG
_subresponse = subResponse;
#endif
Source = source;
Driver = subResponse.Driver;
Engine = subResponse.Engine;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment