pubnix/mkacct/include/application.h

21 lines
281 B
C
Raw Normal View History

2021-08-15 21:31:29 +00:00
#pragma once
#include <string>
#include <vector>
2021-08-18 00:36:56 +00:00
#include "neovision/application.h"
2021-08-15 21:31:29 +00:00
namespace pubnix {
2021-08-18 00:36:56 +00:00
class Application: public neovision::Application
2021-08-15 21:31:29 +00:00
{
public:
Application(std::vector<std::string> args);
virtual ~Application() = default;
2021-08-15 21:31:29 +00:00
};
} // namespace pubnix