Mercurial > hg > orthanc-databases
annotate Framework/Common/IResult.h @ 362:a39038c4094a
missing integration OrthancOdbc-1.1->mainline
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 05 Jun 2022 14:27:59 +0200 |
parents | 16aac0287485 |
children | 3d6886f3e5b3 |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
359
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
298
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
16aac0287485
copyright upgraded to 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
298
diff
changeset
|
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "IValue.h" | |
26 | |
27 namespace OrthancDatabases | |
28 { | |
29 class IResult : public boost::noncopyable | |
30 { | |
31 public: | |
32 virtual ~IResult() | |
33 { | |
34 } | |
35 | |
36 virtual void SetExpectedType(size_t field, | |
37 ValueType type) = 0; | |
38 | |
39 virtual bool IsDone() const = 0; | |
40 | |
41 virtual void Next() = 0; | |
42 | |
43 virtual size_t GetFieldsCount() const = 0; | |
44 | |
45 virtual const IValue& GetField(size_t index) const = 0; | |
298
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
46 |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
47 static void Print(std::ostream& stream, |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
48 IResult& result); |
0 | 49 }; |
50 } |