ARCS6 AR6-REV.24062600
読み取り中…
検索中…
一致する文字列を見つけられません
EquipBase.hh
[詳解]
1
8//
9// Copyright (C) 2011-20XX Yokokura, Yuki
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 EQUIPBASE
15#define EQUIPBASE
16
17namespace ARCS { // ARCS名前空間
19class EquipBase {
20 public:
21 EquipBase();
22 EquipBase(EquipBase&& r);
23 ~EquipBase();
24
25 private:
26 EquipBase(const EquipBase&) = delete;
27 const EquipBase& operator=(const EquipBase&) = delete;
28};
29}
30
31#endif
32
クラスベースコード
Definition EquipBase.hh:19
~EquipBase()
デストラクタ
Definition EquipBase.cc:48
EquipBase()
コンストラクタ
Definition EquipBase.cc:33