Scorum
proposal_create_evaluator.hpp
Go to the documentation of this file.
1 #pragma once
2 
5 
7 
8 namespace scorum {
9 namespace chain {
10 
11 struct account_service_i;
12 struct proposal_service_i;
13 struct registration_committee_service_i;
14 struct dynamic_global_property_service_i;
15 
16 struct data_service_factory_i;
17 
18 class proposal_create_evaluator : public evaluator_impl<data_service_factory_i, proposal_create_evaluator>
19 {
20 public:
22 
23  proposal_create_evaluator(data_service_factory_i& services);
24 
25  void do_apply(const operation_type& op);
26 
27 private:
28  account_service_i& _account_service;
29  proposal_service_i& _proposal_service;
30  dynamic_global_property_service_i& _property_service;
31 };
32 
33 } // namespace chain
34 } // namespace scorum
proposal_create_evaluator(data_service_factory_i &services)
Definition: asset.cpp:15