Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
460b0d4f
Unverified
Commit
460b0d4f
authored
Feb 07, 2018
by
peastman
Committed by
GitHub
Feb 07, 2018
Browse files
Merge pull request #1985 from peastman/export
Added missing Windows exports
parents
f769300f
1831e58d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
platforms/cuda/include/CudaContext.h
platforms/cuda/include/CudaContext.h
+5
-5
platforms/opencl/include/OpenCLContext.h
platforms/opencl/include/OpenCLContext.h
+5
-5
No files found.
platforms/cuda/include/CudaContext.h
View file @
460b0d4f
...
...
@@ -689,14 +689,14 @@ struct CudaContext::MoleculeGroup {
/**
* This abstract class defines a task to be executed on the worker thread.
*/
class
CudaContext
::
WorkTask
{
class
OPENMM_EXPORT_CUDA
CudaContext
::
WorkTask
{
public:
virtual
void
execute
()
=
0
;
virtual
~
WorkTask
()
{
}
};
class
CudaContext
::
WorkThread
{
class
OPENMM_EXPORT_CUDA
CudaContext
::
WorkThread
{
public:
struct
ThreadData
;
WorkThread
();
...
...
@@ -731,7 +731,7 @@ private:
* Objects that need to know when reordering happens should create a ReorderListener
* and register it by calling addReorderListener().
*/
class
CudaContext
::
ReorderListener
{
class
OPENMM_EXPORT_CUDA
CudaContext
::
ReorderListener
{
public:
virtual
void
execute
()
=
0
;
virtual
~
ReorderListener
()
{
...
...
@@ -744,7 +744,7 @@ public:
* that need to be performed at a nonstandard point in the process. After creating a
* ForcePreComputation, register it by calling addForcePreComputation().
*/
class
CudaContext
::
ForcePreComputation
{
class
OPENMM_EXPORT_CUDA
CudaContext
::
ForcePreComputation
{
public:
virtual
~
ForcePreComputation
()
{
}
...
...
@@ -762,7 +762,7 @@ public:
* that need to be performed at a nonstandard point in the process. After creating a
* ForcePostComputation, register it by calling addForcePostComputation().
*/
class
CudaContext
::
ForcePostComputation
{
class
OPENMM_EXPORT_CUDA
CudaContext
::
ForcePostComputation
{
public:
virtual
~
ForcePostComputation
()
{
}
...
...
platforms/opencl/include/OpenCLContext.h
View file @
460b0d4f
...
...
@@ -803,14 +803,14 @@ struct OpenCLContext::MoleculeGroup {
/**
* This abstract class defines a task to be executed on the worker thread.
*/
class
OpenCLContext
::
WorkTask
{
class
OPENMM_EXPORT_OPENCL
OpenCLContext
::
WorkTask
{
public:
virtual
void
execute
()
=
0
;
virtual
~
WorkTask
()
{
}
};
class
OpenCLContext
::
WorkThread
{
class
OPENMM_EXPORT_OPENCL
OpenCLContext
::
WorkThread
{
public:
struct
ThreadData
;
WorkThread
();
...
...
@@ -845,7 +845,7 @@ private:
* Objects that need to know when reordering happens should create a ReorderListener
* and register it by calling addReorderListener().
*/
class
OpenCLContext
::
ReorderListener
{
class
OPENMM_EXPORT_OPENCL
OpenCLContext
::
ReorderListener
{
public:
virtual
void
execute
()
=
0
;
virtual
~
ReorderListener
()
{
...
...
@@ -858,7 +858,7 @@ public:
* that need to be performed at a nonstandard point in the process. After creating a
* ForcePreComputation, register it by calling addForcePreComputation().
*/
class
OpenCLContext
::
ForcePreComputation
{
class
OPENMM_EXPORT_OPENCL
OpenCLContext
::
ForcePreComputation
{
public:
virtual
~
ForcePreComputation
()
{
}
...
...
@@ -876,7 +876,7 @@ public:
* that need to be performed at a nonstandard point in the process. After creating a
* ForcePostComputation, register it by calling addForcePostComputation().
*/
class
OpenCLContext
::
ForcePostComputation
{
class
OPENMM_EXPORT_OPENCL
OpenCLContext
::
ForcePostComputation
{
public:
virtual
~
ForcePostComputation
()
{
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment