Add interface editor
This commit is contained in:
parent
4aa3194e00
commit
709a264c88
9
src/utils/editor.cpp
Normal file
9
src/utils/editor.cpp
Normal 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
7
src/utils/editor.hpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace utils {
|
||||
void OpenEditor(const std::string& file);
|
||||
}
|
Loading…
Reference in a new issue