23 lines
361 B
C
23 lines
361 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Statement.h"
|
||
|
|
#include <memory>
|
||
|
|
|
||
|
|
namespace sqlast {
|
||
|
|
|
||
|
|
class SelectList;
|
||
|
|
|
||
|
|
class SelectStatement: public Statement
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SelectStatement();
|
||
|
|
|
||
|
|
SelectList* GetSelectList();
|
||
|
|
void SetSelectList(std::unique_ptr<SelectList> value);
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::unique_ptr<SelectList> selectList;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|