first commit

pull/2/head
Bastien OLLIER 2 years ago
commit 81d0211ff9

3
.gitignore vendored

@ -0,0 +1,3 @@
bin
build
obj

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.10)
project(exe)
set(CMAKE_CXX_STANDARD 17)
file(GLOB nameFile "src/*.cpp")
add_executable(exe ${nameFile})

@ -0,0 +1,10 @@
#include <iostream>
#include <queue>
#include "programme.hpp"
int main()
{
std::queue<Programme> file;
file.push(Programme());
}

@ -0,0 +1,3 @@
#include "programme.hpp"
Programme::Programme(){}

@ -0,0 +1,8 @@
#pragma once
class Programme{
std::vector<std::string> files;
public:
Programme();
};
Loading…
Cancel
Save