Page MenuHomec4science

Method.hpp
No OneTemporary

File Metadata

Created
Thu, May 16, 05:23

Method.hpp

/*
* Created by Tristan Liardon on 02.12.2018.
*
* Method object is defined by the method's name
*
*/
#ifndef PCSC_PROJET_METHOD_HPP
#define PCSC_PROJET_METHOD_HPP
#include <iostream>
using namespace std;
class Method {
public:
// Constructor and destructor
Method();
Method(string name_);
virtual ~Method();
std::string name;
};
#endif //PCSC_PROJET_METHOD_HPP

Event Timeline