6 lines
116 B
C++
6 lines
116 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
struct AppConfig;
|
|
void processCommand(const std::string& input, AppConfig& config);
|