Add interface editor

This commit is contained in:
Timofey 2022-08-10 21:50:14 +03:00
parent 4aa3194e00
commit 709a264c88
2 changed files with 16 additions and 0 deletions

9
src/utils/editor.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <utils/editor.hpp>
#include <iostream>
namespace utils {
void OpenEditor(const std::string& file) {
std::cout << "Open file " << file << " TODO" << std::endl;
}
}

7
src/utils/editor.hpp Normal file
View file

@ -0,0 +1,7 @@
#pragma once
#include <string>
namespace utils {
void OpenEditor(const std::string& file);
}