| 63 | std::wstring source_code() const { return this->source_code_; } |
| 64 | VARIANT result() { return this->result_; } |
| 65 | void set_result(VARIANT value) { |
| 66 | this->result_.Copy(&value); |
| 67 | } |
| 68 | |
| 69 | void AddArgument(const std::string& argument); |
| 70 | void AddArgument(const std::wstring& argument); |