comparison Core/SQLite/StatementId.h @ 3992:f9863630ec7f

working on the shared library for Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Jun 2020 16:07:01 +0200
parents fa5ad4368fe3
children
comparison
equal deleted inserted replaced
3991:5d2348b39392 3992:f9863630ec7f
35 **/ 35 **/
36 36
37 37
38 #pragma once 38 #pragma once
39 39
40 #if ORTHANC_SQLITE_STANDALONE == 1
41 # define ORTHANC_PUBLIC
42 #else
43 # include "../OrthancFramework.h"
44 #endif
45
40 namespace Orthanc 46 namespace Orthanc
41 { 47 {
42 namespace SQLite 48 namespace SQLite
43 { 49 {
44 class StatementId 50 class ORTHANC_PUBLIC StatementId
45 { 51 {
46 private: 52 private:
47 const char* file_; 53 const char* file_;
48 int line_; 54 int line_;
49 55