19#ifndef SERIALIZATION_PACKERS_HPP
20#define SERIALIZATION_PACKERS_HPP
22#include <opm/common/utility/MemPacker.hpp>
24#include <boost/date_time/gregorian/gregorian_types.hpp>
29namespace Serialization {
33struct Packing<false,boost::gregorian::date>
35 static std::size_t packSize(
const boost::gregorian::date& data);
37 static void pack(
const boost::gregorian::date& data,
38 std::vector<char>& buffer,
int& position);
40 static void unpack(boost::gregorian::date& data,
41 std::vector<char>& buffer,
int& position);
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition: BlackoilPhases.hpp:27