comparison OrthancServer/ServerEnumerations.h @ 197:530a25320461

removal of text as ids in sqlite db
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Nov 2012 14:59:55 +0100
parents baada606da3c
children dfa2899d9960
comparison
equal deleted inserted replaced
196:6d0225a26fd8 197:530a25320461
26 * General Public License for more details. 26 * General Public License for more details.
27 * 27 *
28 * You should have received a copy of the GNU General Public License 28 * You should have received a copy of the GNU General Public License
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. 29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
30 **/ 30 **/
31
32 31
33 #pragma once 32 #pragma once
34 33
35 namespace Orthanc 34 namespace Orthanc
36 { 35 {
79 ChangeType_NewPatient = 4, 78 ChangeType_NewPatient = 4,
80 ChangeType_NewSeries = 2, 79 ChangeType_NewSeries = 2,
81 ChangeType_NewStudy = 5, 80 ChangeType_NewStudy = 5,
82 ChangeType_InvalidSeries = 6 81 ChangeType_InvalidSeries = 6
83 }; 82 };
83
84 enum AttachedFileType
85 {
86 AttachedFileType_Dicom = 1,
87 AttachedFileType_Json = 2
88 };
84 } 89 }