Mercurial > hg > orthanc
comparison Core/SQLite/FunctionContext.h @ 759:8cfc6119a5bd dicom-rt
integration mainline -> dicom-rt
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Apr 2014 16:04:55 +0200 |
parents | 72dc919a028c |
children | 9b9026560a5f |
comparison
equal
deleted
inserted
replaced
605:b82292ba2083 | 759:8cfc6119a5bd |
---|---|
1 /** | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | 2 * Orthanc - A Lightweight, RESTful DICOM Store |
3 * Copyright (C) 2012-2013 Medical Physics Department, CHU of Liege, | 3 * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege, |
4 * Belgium | 4 * Belgium |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
72 int64_t GetInt64Value(unsigned int index) const; | 72 int64_t GetInt64Value(unsigned int index) const; |
73 | 73 |
74 double GetDoubleValue(unsigned int index) const; | 74 double GetDoubleValue(unsigned int index) const; |
75 | 75 |
76 std::string GetStringValue(unsigned int index) const; | 76 std::string GetStringValue(unsigned int index) const; |
77 | |
78 bool IsNullValue(unsigned int index) const; | |
77 | 79 |
78 void SetNullResult(); | 80 void SetNullResult(); |
79 | 81 |
80 void SetIntResult(int value); | 82 void SetIntResult(int value); |
81 | 83 |