ARCS6 AR6-REV.24062600
読み取り中…
検索中…
一致する文字列を見つけられません
LinuxCommander.hh
[詳解]
1
8//
9// Copyright (C) 2011-2019 Yuki YOKOKURA
10// This program is free software;
11// you can redistribute it and/or modify it under the terms of the FreeBSD License.
12// For details, see the License.txt file.
13
14#ifndef LINUXCOMMANDER
15#define LINUXCOMMANDER
16
17#include <string>
18
19namespace ARCS { // ARCS名前空間
22 public:
23 static void Execute(std::string CommandLine);
24
25 private:
26 LinuxCommander() = delete;
27 LinuxCommander(LinuxCommander&& right) = delete;
28 ~LinuxCommander() = delete;
29 LinuxCommander(const LinuxCommander&) = delete;
30 const LinuxCommander& operator=(const LinuxCommander&) = delete;
31 };
32}
33
34#endif
35
Linuxコマンダー
Definition LinuxCommander.hh:21
static void Execute(std::string CommandLine)
Linuxコマンドを実行する関数
Definition LinuxCommander.cc:35