eepp: Pump version.

ecode: Added version number and Help menu. Moved all project source files into the "ecode" namespace.
This commit is contained in:
Martín Lucas Golini
2022-06-12 02:51:16 -03:00
parent 6ffda35039
commit 5280ac40ac
36 changed files with 286 additions and 59 deletions

View File

@@ -1,5 +1,5 @@
#ifndef FORMATTERPLUGIN_HPP
#define FORMATTERPLUGIN_HPP
#ifndef ECODE_FORMATTERPLUGIN_HPP
#define ECODE_FORMATTERPLUGIN_HPP
#include <eepp/config.hpp>
#include <eepp/system/mutex.hpp>
@@ -10,6 +10,8 @@ using namespace EE;
using namespace EE::System;
using namespace EE::UI;
namespace ecode {
class FormatterPlugin : public UICodeEditorPlugin {
public:
FormatterPlugin( const std::string& formatterPath, std::shared_ptr<ThreadPool> pool );
@@ -54,4 +56,6 @@ class FormatterPlugin : public UICodeEditorPlugin {
FormatterPlugin::Formatter supportsFormatter( std::shared_ptr<TextDocument> doc );
};
#endif // FORMATTERPLUGIN_HPP
}
#endif // ECODE_FORMATTERPLUGIN_HPP