add initial bulk run from pre-commit over all files

This commit is contained in:
Felix Schurk 2024-07-29 22:34:51 +02:00
parent 665aeeef61
commit 93356b39c3
418 changed files with 21354 additions and 23858 deletions

View file

@ -27,31 +27,30 @@
#ifndef INCLUDED_CMDCONTEXT
#define INCLUDED_CMDCONTEXT
#include <string>
#include <Command.h>
#include <CLI2.h>
#include <Command.h>
class CmdContext : public Command
{
public:
CmdContext ();
int execute (std::string&);
std::string joinWords (const std::vector <std::string>&, unsigned int, unsigned int = 0);
bool validateWriteContext (const std::vector <A2>&, std::string&);
static std::vector <std::string> getContexts ();
void defineContext (const std::vector <std::string>&, std::stringstream&);
void deleteContext (const std::vector <std::string>&, std::stringstream&);
void listContexts (std::stringstream&);
void setContext (const std::vector <std::string>&, std::stringstream&);
void showContext (std::stringstream&);
void unsetContext (std::stringstream&);
#include <string>
class CmdContext : public Command {
public:
CmdContext();
int execute(std::string&);
std::string joinWords(const std::vector<std::string>&, unsigned int, unsigned int = 0);
bool validateWriteContext(const std::vector<A2>&, std::string&);
static std::vector<std::string> getContexts();
void defineContext(const std::vector<std::string>&, std::stringstream&);
void deleteContext(const std::vector<std::string>&, std::stringstream&);
void listContexts(std::stringstream&);
void setContext(const std::vector<std::string>&, std::stringstream&);
void showContext(std::stringstream&);
void unsetContext(std::stringstream&);
};
class CmdCompletionContext : public Command
{
public:
CmdCompletionContext ();
int execute (std::string&);
class CmdCompletionContext : public Command {
public:
CmdCompletionContext();
int execute(std::string&);
};
#endif