forked from MRtrix3/mrtrix3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscratch.h
44 lines (33 loc) · 928 Bytes
/
scratch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright (c) 2008-2016 the MRtrix3 contributors
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/
*
* MRtrix is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* For more details, see www.mrtrix.org
*
*/
#ifndef __image_io_scratch_h__
#define __image_io_scratch_h__
#include "image_io/base.h"
namespace MR
{
namespace ImageIO
{
class Scratch : public Base
{
public:
Scratch (const Header& header) : Base (header) { }
virtual bool is_file_backed () const;
protected:
virtual void load (const Header&, size_t);
virtual void unload (const Header&);
};
}
}
#endif