Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Loaders/BasicFetchingItemsSorter.h @ 1596:4fb8fdf03314
removed annoying whitespace
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 26 Oct 2020 17:51:42 +0100 |
parents | 85e117739eca |
children | 8563ea5d8ae4 |
rev | line source |
---|---|
708 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1270
2d8ab34c8c91
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
757
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
708 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1571
diff
changeset
|
16 * |
708 | 17 * You should have received a copy of the GNU Affero General Public License |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "IFetchingItemsSorter.h" | |
25 | |
1571 | 26 #include <Compatibility.h> // For ORTHANC_OVERRIDE |
27 | |
708 | 28 namespace OrthancStone |
29 { | |
30 class BasicFetchingItemsSorter : public IFetchingItemsSorter | |
31 { | |
32 private: | |
33 unsigned int itemsCount_; | |
34 | |
35 public: | |
757 | 36 class Factory : public IFactory |
37 { | |
38 public: | |
1571 | 39 virtual IFetchingItemsSorter* CreateSorter(unsigned int itemsCount) const ORTHANC_OVERRIDE |
757 | 40 { |
41 return new BasicFetchingItemsSorter(itemsCount); | |
42 } | |
43 }; | |
44 | |
1571 | 45 explicit BasicFetchingItemsSorter(unsigned int itemsCount); |
708 | 46 |
1571 | 47 virtual unsigned int GetItemsCount() const ORTHANC_OVERRIDE |
708 | 48 { |
49 return itemsCount_; | |
50 } | |
51 | |
52 virtual void Sort(std::vector<unsigned int>& target, | |
1571 | 53 unsigned int current) ORTHANC_OVERRIDE; |
708 | 54 }; |
55 } |