Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjenssen committed Dec 11, 2023
1 parent 75afebd commit b8f999f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
24 changes: 24 additions & 0 deletions ApplicationLibCode/GeoMech/OdbReader/RifInpIncludeReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,27 @@
/////////////////////////////////////////////////////////////////////////////////

#pragma once

#include "RifInpIncludeReader.h"

RifInpIncludeReader::RifInpIncludeReader()
{
}

RifInpIncludeReader::~RifInpIncludeReader()
{
}

bool RifInpIncludeReader::openFile( const std::string& fileName, std::string* errorMessage )
{
return false;
}

bool RifInpIncludeReader::isOpen() const
{
return false;
}

void RifInpIncludeReader::close()
{
}
7 changes: 2 additions & 5 deletions ApplicationLibCode/GeoMech/OdbReader/RifInpIncludeReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,15 @@
//==================================================================================================
//
//==================================================================================================
class RifInpReader
class RifInpIncludeReader
{
public:
RifInpIncludeReader();
~RifInpIncludeReader() override;
~RifInpIncludeReader();

bool openFile( const std::string& fileName, std::string* errorMessage );
bool isOpen() const;

bool


private:
void close();

Expand Down

0 comments on commit b8f999f

Please sign in to comment.