ONE - On-device Neural Engine
Loading...
Searching...
No Matches
Main.cpp File Reference
#include "EncodeCommand.hpp"
#include "DecodeCommand.hpp"
#include <cli/App.h>
#include <memory>

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 24 of file Main.cpp.

25{
26 cli::App app{argv[0]};
27
28 app.insert("encode", std::make_unique<EncodeCommand>());
29 app.insert("decode", std::make_unique<DecodeCommand>());
30
31 return app.run(argc - 1, argv + 1);
32}
Definition App.h:30