22 lines
313 B
C++
22 lines
313 B
C++
#ifndef _P_H_
|
|
#define _P_H_
|
|
|
|
#include <cstddef>
|
|
#include <vector>
|
|
#include "IO.h"
|
|
|
|
namespace Shin
|
|
{
|
|
class Problem : public IO
|
|
{
|
|
public:
|
|
Problem(): IO() {};
|
|
Problem(const std::vector<float> &p):IO(p) {};
|
|
Problem(const std::initializer_list<float> &a) : IO(a) {};
|
|
protected:
|
|
private:
|
|
};
|
|
}
|
|
#endif
|
|
|