~ubuntu-branches/ubuntu/wily/aria2/wily-proposed

« back to all changes in this revision

Viewing changes to src/HttpServerResponseCommand.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Kartik Mistry, Patrick Ruckstuhl
  • Date: 2013-09-22 18:52:14 UTC
  • mfrom: (2.5.19 sid)
  • Revision ID: package-import@ubuntu.com-20130922185214-upeu2ljgeqi7e7oo
Tags: 1.18.0-1
[ Kartik Mistry ]
* New upstream release.
* debian/control:
  + (really) Set priority to optional from extra (Closes: #697659).
  + wrap-and-sort some fields.

[ Patrick Ruckstuhl ]
* debian/rules:
  + Allow parallel building (Closes: #720977)
* debian/tests, debian/control:
  + autopkgtest infrastructure

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
class HttpServerResponseCommand : public AbstractHttpServerResponseCommand {
43
43
protected:
44
 
  virtual void afterSend(const SharedHandle<HttpServer>& httpServer,
45
 
                         DownloadEngine* e);
 
44
  virtual void afterSend(const std::shared_ptr<HttpServer>& httpServer,
 
45
                         DownloadEngine* e) CXX11_OVERRIDE;
46
46
public:
47
47
  HttpServerResponseCommand(cuid_t cuid,
48
 
                            const SharedHandle<HttpServer>& httpServer,
 
48
                            const std::shared_ptr<HttpServer>& httpServer,
49
49
                            DownloadEngine* e,
50
 
                            const SharedHandle<SocketCore>& socket);
 
50
                            const std::shared_ptr<SocketCore>& socket);
51
51
 
52
52
  virtual ~HttpServerResponseCommand();
53
53
};