comparison Core/SQLite/Statement.h @ 50:a15e90e5d6fc

rename in code
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Sep 2012 15:50:12 +0200
parents db4d996ea264
children c996319e90bc
comparison
equal deleted inserted replaced
49:e1a3ae0dadf3 50:a15e90e5d6fc
1 /** 1 /**
2 * Palantir - A Lightweight, RESTful DICOM Store 2 * Palanthir - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012 Medical Physics Department, CHU of Liege, 3 * Copyright (C) 2012 Medical Physics Department, CHU of Liege,
4 * Belgium 4 * Belgium
5 * 5 *
6 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 6 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
7 * 7 *
34 **/ 34 **/
35 35
36 36
37 #pragma once 37 #pragma once
38 38
39 #include "../PalantirException.h" 39 #include "../PalanthirException.h"
40 #include "StatementId.h" 40 #include "StatementId.h"
41 #include "StatementReference.h" 41 #include "StatementReference.h"
42 42
43 #include <vector> 43 #include <vector>
44 #include <stdint.h> 44 #include <stdint.h>
45 #include <boost/noncopyable.hpp> 45 #include <boost/noncopyable.hpp>
46 46
47 struct sqlite3_stmt; 47 struct sqlite3_stmt;
48 48
49 49
50 namespace Palantir 50 namespace Palanthir
51 { 51 {
52 namespace SQLite 52 namespace SQLite
53 { 53 {
54 class Connection; 54 class Connection;
55 55