diff Core/SQLite/IScalarFunction.h @ 1221:2255e66da726

getting rid of the dependency against Boost in the SQLite C++ wrapper
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Nov 2014 17:05:50 +0100
parents 9b9026560a5f
children 63d47b1fa239
line wrap: on
line diff
--- a/Core/SQLite/IScalarFunction.h	Mon Nov 10 16:33:51 2014 +0100
+++ b/Core/SQLite/IScalarFunction.h	Mon Nov 10 17:05:50 2014 +0100
@@ -34,13 +34,14 @@
 
 #pragma once
 
+#include "NonCopyable.h"
 #include "FunctionContext.h"
 
 namespace Orthanc
 {
   namespace SQLite
   {
-    class IScalarFunction : public boost::noncopyable
+    class IScalarFunction : public NonCopyable
     {
     public:
       virtual ~IScalarFunction()