//
// Application.h
// Framework
//
// Created by John Ryland on 4/10/17.
// Copyright © 2017 John Ryland. All rights reserved.
//
#pragma once
#ifndef Application_h
#define Application_h
#include <vector>
#include <string>
class Application
{
public:
Application(int argc, const char* argv[]);
~Application();
int run();
private:
std::vector<std::string> m_args;
};
#endif /* Application_h */