Skip to content

Commit 13a98d9

Browse files
committed
Utilitaire & Fonctionnement de envoyer
1 parent cbf0a26 commit 13a98d9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

headers/Management_Envoyer.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#pragma once
2+
3+
#include <iostream>
4+
#include <string>
5+
6+
7+
void FPL_Print_Init(std::vector<std::string>& content_line_slitted, std::string& line) {
8+
// Préparation
9+
10+
std::string whatReplace = "envoyer ";
11+
std::string& ref_whatreplace = whatReplace;
12+
std::string print_content = replace(line, ref_whatreplace);
13+
14+
15+
// Envoyer
16+
17+
std::cout << print_content << std::endl;
18+
}

0 commit comments

Comments
 (0)