parent
81d0211ff9
commit
3a30b05375
@ -0,0 +1,8 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
|
||||||
|
class Machine{
|
||||||
|
unsigned int connection;
|
||||||
|
unsigned int connectionMax;
|
||||||
|
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
#include "programme.hpp"
|
#include "programme.hpp"
|
||||||
|
|
||||||
Programme::Programme(){}
|
Programme::Programme(const std::vector<std::string>& files, const std::string& image): files{files}, imageContainer{image}
|
||||||
|
{}
|
@ -1,8 +1,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class Programme{
|
class Programme{
|
||||||
std::vector<std::string> files;
|
std::vector<std::string> files;
|
||||||
|
std::string imageContainer;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Programme();
|
Programme(const std::vector<std::string>& files, const std::string& image);
|
||||||
};
|
};
|
Loading…
Reference in new issue