OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
UnittestDocumentAccess.h
Go to the documentation of this file.
1#pragma once
3#pragma warning(disable:4275)
4/*
5* Warning C4275: non - DLL-interface class 'class_1' used as base for DLL-interface class 'class_2'
6* Is ok, as long as no static data or CRT functionality are used under certain conditions (https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-2-c4275?view=msvc-170&redirectedfrom=MSDN)
7* Neither is currently used in the base class so it should be alright.
8*/
9
10
11class __declspec(dllexport) UnittestDocumentAccess : public DataStorageAPI::DocumentAccess
12{
13public:
14 UnittestDocumentAccess(const std::string& collectionName);
15};
Definition DocumentAccess.h:18