mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
15 lines
162 B
C
15 lines
162 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace caf
|
||
|
|
{
|
||
|
|
|
||
|
|
class PdmFieldCapability
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
PdmFieldCapability() {}
|
||
|
|
virtual ~PdmFieldCapability() {}
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
} // End of namespace caf
|