Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JossWhittle committed Jul 5, 2016
1 parent 895444e commit 1a74e08
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions MEL_deepcopy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,19 @@ namespace MEL {

class Message {
public:

/**
* \ingroup Deep
* Internal flags for tracking which deep operation is being performed
*/
enum class Mode {

/// \cond HIDE
enum class Mode {
P2P = 0x1,
Collective = 0x2,
MEL_File = 0x4,
STL_File = 0x8
};
/// \endcond

private:
/// Members
/// \cond HIDE
/// Members
const int pid, tag;
const Mode mode;
const Comm comm;
Expand All @@ -102,6 +101,7 @@ namespace MEL {
};

std::unordered_map<size_t, void*, PassThroughHash> pointerMap;
/// \endcond

/**
* \ingroup Deep
Expand Down

0 comments on commit 1a74e08

Please sign in to comment.