~gimaker/peekabot/multi-connect

« back to all changes in this revision

Viewing changes to src/client/proxies/LineCloudProxy.cc

  • Committer: Staffan Gimåker
  • Date: 2008-09-26 15:50:12 UTC
  • Revision ID: staffan@gimaker.se-20080926155012-l53jlaz7hzuj5rf5
Fixed a bug in the copy-ctor of LineCloudProxy, which rendered it impossible 
to use in STL containers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
}
28
28
 
29
29
 
30
 
LineCloudProxyBase::LineCloudProxyBase(LineCloudProxyBase &p)
 
30
LineCloudProxyBase::LineCloudProxyBase(const LineCloudProxyBase &p)
31
31
    : ObjectProxyBase(p),
32
32
      ScalableProxyBase(p),
33
33
      VertexBasedProxyBase(p),
58
58
}
59
59
 
60
60
 
61
 
LineCloudProxy::LineCloudProxy(LineCloudProxyBase &p)
 
61
LineCloudProxy::LineCloudProxy(const LineCloudProxyBase &p)
62
62
    : ObjectProxyBase(p),
63
63
      LineCloudProxyBase(p)
64
64
{