We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf0a26 commit 13a98d9Copy full SHA for 13a98d9
headers/Management_Envoyer.h
@@ -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