libzypp  17.31.31
final_p.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 ----------------------------------------------------------------------/
9 *
10 * This file contains private API, this might break at any time between releases.
11 * You have been warned!
12 *
13 */
14 #ifndef ZYPP_CURL_NG_NETWORK_PRIVATE_DOWNLOADERSTATES_FINAL_P_H_INCLUDED
15 #define ZYPP_CURL_NG_NETWORK_PRIVATE_DOWNLOADERSTATES_FINAL_P_H_INCLUDED
16 
17 #include "base_p.h"
18 #include <zypp-core/zyppng/base/statemachine.h>
19 
20 namespace zyppng {
21 
26  struct FinishedState : public SimpleState< DownloadPrivate, Download::Finished, true >
27  {
29 
30  void enter (){}
31  void exit (){}
32 
34  };
35 
36 }
37 
38 #endif
FinishedState(NetworkRequestError &&error, DownloadPrivate &parent)
Definition: final_p.cc:16
The NetworkRequestError class Represents a error that occured in.
NetworkRequestError _error
Definition: final_p.h:33