Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:frate-dev/frate into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaSTL committed Dec 13, 2023
2 parents 5dd580e + e129250 commit a848200
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/Frate/Command.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ namespace Frate::Command {

class Interface{
public:
Interface(int argc, char **argv);
void getHelpString(std::string name,std::vector<Handler> &handlers,bool is_subcommand = false);
void getHelpString(Handler &handler);
bool runCommand(std::string,std::vector<Handler>&);
Expand All @@ -189,11 +190,10 @@ namespace Frate::Command {
char** argv;
int argc;
bool confirm_all{false};
Interface(int argc, char **argv);
~Interface();
bool InitHeader();
bool CreateCMakelists();
bool LoadProjectJson();
~Interface();
};

namespace OptionsInit{
Expand Down

0 comments on commit a848200

Please sign in to comment.