ImSQL
C++ 기반 SQL 자동화 및 라이선스 관리 엔진
Loading...
Searching...
No Matches
arguments.hpp
Go to the documentation of this file.
1
10#ifndef ARGUMENTS_H
11#define ARGUMENTS_H
12
13#pragma once
14#include <string>
15
21struct Arguments {
22 std::string config_path;
23};
24
25#endif // ARGUMENTS_H // end of Arguments
프로그램 실행 인자(argument)를 담는 구조체.
Definition arguments.hpp:21
std::string config_path
설정 파일 경로
Definition arguments.hpp:22