fw4spl
FileFormat.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #ifndef __FWMEMORY_FILEFORMAT_HPP__
8 #define __FWMEMORY_FILEFORMAT_HPP__
9 
10 namespace fwMemory
11 {
12 
13 typedef enum
14 {
15  OTHER = 0,
16  RAW = 1,
17  RAWZ = 1 << 2
18 } FileFormatType;
19 
20 } // namespace fwMemory
21 
22 #endif // __FWMEMORY_FILEFORMAT_HPP__
23 
The namespace fwMemory contains tools to manage memory. Use for dump.
Definition: SReader.hpp:20