Changeset 69 in pacpusframework for trunk/include/Pacpus/PacpusTools/ShMem.h


Ignore:
Timestamp:
01/10/13 00:04:42 (11 years ago)
Author:
Marek Kurdej
Message:

Added: more documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/PacpusTools/ShMem.h

    r67 r69  
    1616#ifdef WIN32
    1717#   include "Win32ShMem.h"
     18/// Defines shared memory as a Windows shared memory
    1819#   define ShMemType Win32ShMem
    1920#else
    2021#   include "PosixShMem.h"
     22/// Defines shared memory as a POSIX shared memory
    2123#   define ShMemType PosixShMem
    2224#endif
     
    2426namespace pacpus {
    2527
     28/// Shared memory class.
     29///
     30/// Inherits from Win32ShMem on Windows system and from PosixShMem on Unix-like systems.
    2631class ShMem
    27         : public ShMemType
     32    : public ShMemType
    2833{
    2934public:
    30     /// @brief Ctor of shared memory class.
     35    /// Ctor of shared memory class.
    3136    ///
    3237    /// Creates a shared memory of size @b size and named @b name.
     
    4348    }
    4449
    45     /// @brief Dtor of shared memory class.
     50    /// Dtor of shared memory class.
    4651    ///
    4752    /// Does nothing.
Note: See TracChangeset for help on using the changeset viewer.