source: pacpusframework/trunk/include/Pacpus/PacpusTools/ShMem.h@ 66

Last change on this file since 66 was 66, checked in by Marek Kurdej, 11 years ago

Documentation: file info.

  • Property svn:keywords set to Id
File size: 859 bytes
Line 
1// This file is part of the PACPUS framework distributed under the
2// CECILL-C License, Version 1.0.
3//
4/// @file
5/// @author Firstname Surname <firstname.surname@utc.fr>
6/// @date Month, Year
7/// @version $Id: ShMem.h 66 2013-01-09 16:54:11Z kurdejma $
8/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
9/// @brief Brief description.
10///
11/// Detailed description.
12
13#ifndef DEF_PACPUS_SHMEM_H
14#define DEF_PACPUS_SHMEM_H
15
16#ifdef WIN32
17# include "Win32ShMem.h"
18# define ShMemType Win32ShMem
19#else
20# include "PosixShMem.h"
21# define ShMemType PosixShMem
22#endif
23
24namespace pacpus {
25
26class ShMem
27 : public ShMemType
28{
29public:
30 ShMem(const char * name, int size)
31 : ShMemType(name, size)
32 {
33 }
34
35 ~ShMem()
36 {
37 }
38
39protected:
40private:
41};
42
43} // namespace pacpus
44
45#endif // DEF_PACPUS_SHMEM_H
Note: See TracBrowser for help on using the repository browser.