OSDN Git Service

[Modify] 色々怪しいがビルドは通るところまで。 / Various suspicious but the build passes...
[deeangband/Deeangband-new.git] / Deeangband / FixedArtifact.h
1 /*!
2 * @file FixedArtifact.h
3 * @brief \83Q\81[\83\80\92\86\82Ì\8cÅ\92è\83A\81[\83e\83B\83t\83@\83N\83g\82Ì\83v\83\8d\83g\83^\83C\83v
4 * @date 2013/12/17
5 * @author Deskull
6 * 2013 Sikabane Works.
7 */
8
9 #include "stdafx.h"
10 #include "Dice.h"
11 #include "GameElement.h"
12 #include "ItemTemplate.h"
13 #include "SavingTable.h"
14 #include "HaveSymbol.h"
15
16 namespace Deeangband
17 {
18
19         /*!
20         * @class FixedArtifact
21         * @brief \8cÅ\92è\83A\81[\83e\83B\83t\83@\83N\83g\82Ì\83N\83\89\83X
22         */
23         class FixedArtifact : public ItemTemplate
24         {
25         private:
26
27                 /*!
28                 * @brief \83N\83\89\83X\82Ì\83V\83\8a\83A\83\89\83C\83Y\82ð\90Ý\92è\82·\82é
29                 * @param archive \83A\81[\83J\83C\83u\89»\82·\82é\83N\83\89\83X\82Ì\83A\83h\83\8c\83X
30                 * @param version \83t\83@\83C\83\8b\83o\81[\83W\83\87\83\93
31                 * @return XMLSerialize\83e\83\93\83v\83\8c\81[\83g
32                 */
33                 template<class Archive> void serialize(Archive &archive, const unsigned int version) 
34                 {
35                         if(version >= 0)
36                         {
37                         }
38                 }
39
40         public:
41
42                 /*! 
43                 * @brief FixedArtifact\83N\83\89\83X\83R\83\93\83X\83g\83\89\83N\83^
44                 */
45                 FixedArtifact::FixedArtifact(void);
46
47                 /*! 
48                 * @brief FixedArtifact\83N\83\89\83X\83f\83X\83g\83\89\83N\83^
49                 */
50                 FixedArtifact::~FixedArtifact(void);
51
52                 /*! 
53                 * @brief \83_\83~\81[\83f\81[\83^\82É\82æ\82é\8f\89\8aú\89»
54                 * @return \82È\82µ
55                 */
56                 void FixedArtifact::WipeData(void);
57
58         };
59 }
60