~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to include/lang/noop_statement.hpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-05-13 04:00:12 UTC
  • mfrom: (96.1.42 sortfile)
  • Revision ID: eda-qa@disemia.com-20170513040012-ieshuqv2vkjt0xc3
merging sortfile

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include "statement.hpp"
5
5
 
6
 
namespace leaf
7
 
{
 
6
namespace leaf {
8
7
 
9
 
struct noop_statement : public statement 
10
 
{
 
8
struct noop_statement : public statement {
 
9
        typedef statement super;
 
10
        
11
11
        virtual statement_form_t statement_form() const {
12
12
                return sf_noop_statement;
13
13
        }
 
14
        
 
15
        STATEMENT_PRE_CLONE(noop_statement)
 
16
        STATEMENT_SERIAL()
 
17
protected:
 
18
        void pre_copy( noop_statement const & o );
 
19
        
 
20
        void write_impl( serial_out & so ) const;
 
21
        void read_impl( serial_in & so );
14
22
};
15
23
 
16
24
} //eon leaf