FileReaderNetCDF.cc 1.15 KB
/*
 * FileReaderNetCDF.cc
 *
 *  Created on: Feb 08, 2018
 *  Author: AKKA
 */

#include "FileReaderNetCDF.hh"

#include "ParameterManager.hh"
#include "LocalFileInterfaceConfig.hh"
#include "TimeUtil.hh"

#include <boost/shared_ptr.hpp>

namespace AMDA {
namespace LocalFileInterface {

FileReaderNetCDF::FileReaderNetCDF()
{
}

FileReaderNetCDF::~FileReaderNetCDF()
{
}

bool FileReaderNetCDF::open(std::string filePath)
{
	return false;
}

bool FileReaderNetCDF::close(void)
{
	return false;
}

bool FileReaderNetCDF::isOpened(void)
{
	return false;
}

std::string FileReaderNetCDF::getTimeParamId(void)
{
	return "";
}

bool FileReaderNetCDF::getParamInfo(std::string& paramId, LocalParamType& paramType, int& dim1Size, int& dim2Size)
{
	return false;
}

int FileReaderNetCDF::getRecordIndex(std::string& timeId, double time)
{
	return -1;
}

FileReaderStatus FileReaderNetCDF::getParamPacketData(std::string& timeId, std::string& paramId,
		int recordIndex, double stopTime, LocalParamDataPacket *packet)
{
	return FRS_ERROR;
}

bool FileReaderNetCDF::getInfo(const char* /*pInfoName*/, std::vector<double>& /*res*/)
{
	return false;
}

} /* LocalFileInterface */
} /* AMDA */