[opengtl-commits] [690] set the library compilation object in kernel |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/opengtl-commits Archives
]
Revision: 690
Author: cyrille
Date: 2009-03-26 11:12:53 +0100 (Thu, 26 Mar 2009)
Log Message:
-----------
set the library compilation object in kernel
Modified Paths:
--------------
trunk/OpenGTL/OpenShiva/OpenShiva/Kernel.cpp
Modified: trunk/OpenGTL/OpenShiva/OpenShiva/Kernel.cpp
===================================================================
--- trunk/OpenGTL/OpenShiva/OpenShiva/Kernel.cpp 2009-03-26 10:12:19 UTC (rev 689)
+++ trunk/OpenGTL/OpenShiva/OpenShiva/Kernel.cpp 2009-03-26 10:12:53 UTC (rev 690)
@@ -53,6 +53,7 @@
d->self = this;
d->evaluatePixelesFunction = 0;
d->wrapper = 0;
+ Library::d->libraryCompilation = d;
}
Kernel::Kernel(int _channelsNb ) : Library( true, _channelsNb), d(new Private )
@@ -60,6 +61,7 @@
d->self = this;
d->evaluatePixelesFunction = 0;
d->wrapper = 0;
+ Library::d->libraryCompilation = d;
}
Kernel::~Kernel()