Move stream operator declarations into the same file as their types

This commit is contained in:
2017-04-14 01:07:21 -04:00
parent e98f9381fe
commit 4baac518e9
10 changed files with 32 additions and 29 deletions

View File

@@ -22,4 +22,7 @@ public:
std::string descr;
};
std::istream& operator>>(std::istream& in, eQuestStatus& type);
std::ostream& operator<<(std::ostream& out, eQuestStatus type);
#endif