Changeset 3158 for code/branches/pch/src/orxonox/objects/quest
- Timestamp:
- Jun 13, 2009, 5:05:38 PM (15 years ago)
- Location:
- code/branches/pch/src/orxonox/objects/quest
- Files:
-
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/objects/quest/AddQuest.cc
r3149 r3158 28 28 29 29 /** 30 @file AddQuest.cc30 @file 31 31 @brief Implementation of the AddQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/AddQuest.h
r3068 r3158 28 28 29 29 /** 30 @file AddQuest.h30 @file 31 31 @brief Definition of the AddQuest class. 32 32 */ … … 36 36 37 37 #include "OrxonoxPrereqs.h" 38 39 #include <string>40 38 41 39 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/AddQuestHint.cc
r3149 r3158 28 28 29 29 /** 30 @file AddQuestHint.cc30 @file 31 31 @brief Implementation of the AddQuestHint class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/AddQuestHint.h
r3068 r3158 28 28 29 29 /** 30 @file AddQuestHint.h30 @file 31 31 @brief Definition of the AddQuestHint class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/AddReward.cc
r3110 r3158 28 28 29 29 /** 30 @file AddReward.cc30 @file 31 31 @brief Implementation of the AddReward class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/AddReward.h
r3068 r3158 28 28 29 29 /** 30 @file AddReward.h30 @file 31 31 @brief Definition of the AddReward class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/ChangeQuestStatus.cc
r3110 r3158 28 28 29 29 /** 30 @file ChangeQuestStatus.cc30 @file 31 31 @brief Implementation of the ChangeQuestStatus class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/ChangeQuestStatus.h
r3068 r3158 28 28 29 29 /** 30 @file ChangeQuestStatus.h30 @file 31 31 @brief Definition of the ChangeQuestStatus class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/CompleteQuest.cc
r3149 r3158 28 28 29 29 /** 30 @file CompleteQuest.cc30 @file 31 31 @brief Implementation of the CompleteQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/CompleteQuest.h
r3068 r3158 28 28 29 29 /** 30 @file CompleteQuest.h30 @file 31 31 @brief Definition of the CompleteQuest class. 32 32 */ … … 36 36 37 37 #include "OrxonoxPrereqs.h" 38 39 #include <string>40 38 41 39 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/FailQuest.cc
r3149 r3158 28 28 29 29 /** 30 @file FailQuest.cc30 @file 31 31 @brief Implementation of the FailQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/FailQuest.h
r3068 r3158 28 28 29 29 /** 30 @file FailQuest.h30 @file 31 31 @brief Definition of the FailQuest class. 32 32 */ … … 36 36 37 37 #include "OrxonoxPrereqs.h" 38 39 #include <string>40 38 41 39 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/GlobalQuest.cc
r3149 r3158 28 28 29 29 /** 30 @file GlobalQuest.cc30 @file 31 31 @brief Implementation of the GlobalQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/GlobalQuest.h
r3068 r3158 28 28 29 29 /** 30 @file GlobalQuest.h30 @file 31 31 @brief Definition of the GlobalQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/LocalQuest.cc
r3149 r3158 28 28 29 29 /** 30 @file LocalQuest.cc30 @file 31 31 @brief Implementation of the LocalQuest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/LocalQuest.h
r3068 r3158 28 28 29 29 /** 30 @file LocalQuest.h30 @file 31 31 @brief Definition of the LocalQuest class. 32 32 */ … … 38 38 39 39 #include <map> 40 #include <string>41 40 42 41 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/Quest.cc
r3110 r3158 28 28 29 29 /** 30 @file Quest.cc30 @file 31 31 @brief Implementation of the Quest class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/Quest.h
r3068 r3158 28 28 29 29 /** 30 @file Quest.h30 @file 31 31 @brief Definition of the Quest class. 32 32 The Quest is the parent class of LocalQuest and GlobalQuest. … … 39 39 40 40 #include <list> 41 #include <string>42 41 43 42 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/QuestDescription.cc
r3110 r3158 28 28 29 29 /** 30 @file QuestDescription.cc30 @file 31 31 @brief Implementation of the QuestDescription class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestDescription.h
r3068 r3158 28 28 29 29 /** 30 @file QuestDescription.h30 @file 31 31 @brief Definition of the QuestDescription class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestEffect.cc
r3110 r3158 28 28 29 29 /** 30 @file QuestEffect.cc30 @file 31 31 @brief Implementation of the QuestEffect class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestEffect.h
r3068 r3158 28 28 29 29 /** 30 @file QuestEffect.h30 @file 31 31 @brief Definition of the QuestEffect class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestEffectBeacon.cc
r3110 r3158 28 28 29 29 /** 30 @file QuestEffectBeacon.cc30 @file 31 31 @brief Implementation of the QuestEffectBeacon class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestEffectBeacon.h
r2911 r3158 28 28 29 29 /** 30 @file QuestEffectBeacon.h30 @file 31 31 @brief Definition of the QuestEffectBeacon class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestHint.cc
r3149 r3158 28 28 29 29 /** 30 @file QuestHint.cc30 @file 31 31 @brief Implementation of the QuestHint class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestHint.h
r3068 r3158 28 28 29 29 /** 30 @file QuestHint.h30 @file 31 31 @brief Definition of the QuestHint class. 32 32 */ … … 38 38 39 39 #include <map> 40 #include <string>41 40 42 41 #include "core/XMLPort.h" -
code/branches/pch/src/orxonox/objects/quest/QuestItem.cc
r3110 r3158 28 28 29 29 /** 30 @file QuestItem.cc30 @file 31 31 @brief Implementation of the QuestItem class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestItem.h
r3068 r3158 28 28 29 29 /** 30 @file QuestItem.h30 @file 31 31 @brief Definition of the QuestItem class. 32 32 The QuestItem is the parent class of Quest and QuestHint. -
code/branches/pch/src/orxonox/objects/quest/QuestListener.cc
r3149 r3158 28 28 29 29 /** 30 @file QuestListener.cc30 @file 31 31 @brief Implementation of the QuestListener class. 32 32 */ … … 163 163 Return the mode of the QuestListener. Can be eighter 'all', 'start', 'fail' or 'complete'. 164 164 */ 165 conststd::string QuestListener::getMode(void)165 std::string QuestListener::getMode(void) 166 166 { 167 167 if(this->mode_ == questListenerMode::all) -
code/branches/pch/src/orxonox/objects/quest/QuestListener.h
r2911 r3158 28 28 29 29 /** 30 @file QuestListener.h30 @file 31 31 @brief Definition of the QuestListener class. 32 32 */ … … 90 90 bool setMode(const std::string & mode); //!< Sets the mode of the QuestListener. 91 91 92 conststd::string getMode(void); //!< Get the mode of the QuestListener.92 std::string getMode(void); //!< Get the mode of the QuestListener. 93 93 94 94 /** -
code/branches/pch/src/orxonox/objects/quest/QuestManager.cc
r3149 r3158 28 28 29 29 /** 30 @file QuestManager.cc30 @file 31 31 @brief Implementation of the QuestManager class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/QuestManager.h
r3068 r3158 28 28 29 29 /** 30 @file QuestManager.h30 @file 31 31 @brief Definition of the QuestManager class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/Rewardable.cc
r3110 r3158 28 28 29 29 /** 30 @file Rewardable.cc30 @file 31 31 @brief Implementation of the Rewardable class. 32 32 */ -
code/branches/pch/src/orxonox/objects/quest/Rewardable.h
r3068 r3158 28 28 29 29 /** 30 @file Rewardable.h30 @file 31 31 @brief Definition of the Rewardable class. 32 32 */
Note: See TracChangeset
for help on using the changeset viewer.