OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::Assignment Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::Assignment:
+ Collaboration diagram for Parser::Assignment:

Public Member Functions

 Assignment (std::string *c, Expr *a)
 
const std::string * get_column () const
 
const Exprget_assignment () const
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

std::unique_ptr< std::string > column_
 
std::unique_ptr< Exprassignment_
 

Detailed Description

Definition at line 2107 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::Assignment::Assignment ( std::string *  c,
Expr a 
)
inline

Definition at line 2109 of file ParserNode.h.

2109 : column_(c), assignment_(a) {}
std::unique_ptr< Expr > assignment_
Definition: ParserNode.h:2115
constexpr double a
Definition: Utm.h:32
std::unique_ptr< std::string > column_
Definition: ParserNode.h:2114

Member Function Documentation

const Expr* Parser::Assignment::get_assignment ( ) const
inline

Definition at line 2111 of file ParserNode.h.

References assignment_.

2111 { return assignment_.get(); }
std::unique_ptr< Expr > assignment_
Definition: ParserNode.h:2115
const std::string* Parser::Assignment::get_column ( ) const
inline

Definition at line 2110 of file ParserNode.h.

References column_.

2110 { return column_.get(); }
std::unique_ptr< std::string > column_
Definition: ParserNode.h:2114

Member Data Documentation

std::unique_ptr<Expr> Parser::Assignment::assignment_
private

Definition at line 2115 of file ParserNode.h.

Referenced by get_assignment().

std::unique_ptr<std::string> Parser::Assignment::column_
private

Definition at line 2114 of file ParserNode.h.

Referenced by get_column().


The documentation for this class was generated from the following file: