mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-04 21:07:57 +08:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/*
|
|
* KRecord.h
|
|
*
|
|
* Created on: 2013-5-1
|
|
* Author: fasiondog
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef KRECORD_SERIALIZATION_H_
|
|
#define KRECORD_SERIALIZATION_H_
|
|
|
|
#include "../config.h"
|
|
#include "../KRecord.h"
|
|
|
|
#if HKU_SUPPORT_SERIALIZATION
|
|
#include <boost/serialization/nvp.hpp>
|
|
#include <boost/serialization/split_free.hpp>
|
|
#include <boost/serialization/vector.hpp>
|
|
|
|
namespace boost {
|
|
namespace serialization {
|
|
template <class Archive>
|
|
void save(Archive& ar, const hku::KRecord& record, unsigned int version) {
|
|
hku::uint64 datetime = record.datetime.number();
|
|
ar& BOOST_SERIALIZATION_NVP(datetime);
|
|
ar& make_nvp("openPrice", record.openPrice);
|
|
ar& make_nvp("highPrice", record.highPrice);
|
|
ar& make_nvp("lowPrice", record.lowPrice);
|
|
ar& make_nvp("closePrice", record.closePrice);
|
|
ar& make_nvp("transAmount", record.transAmount);
|
|
ar& make_nvp("transCount", record.transCount);
|
|
}
|
|
|
|
template <class Archive>
|
|
void load(Archive& ar, hku::KRecord& record, unsigned int version) {
|
|
hku::uint64 datetime;
|
|
ar& BOOST_SERIALIZATION_NVP(datetime);
|
|
record.datetime = hku::Datetime(datetime);
|
|
ar& make_nvp("openPrice", record.openPrice);
|
|
ar& make_nvp("highPrice", record.highPrice);
|
|
ar& make_nvp("lowPrice", record.lowPrice);
|
|
ar& make_nvp("closePrice", record.closePrice);
|
|
ar& make_nvp("transAmount", record.transAmount);
|
|
ar& make_nvp("transCount", record.transCount);
|
|
}
|
|
} // namespace serialization
|
|
} // namespace boost
|
|
|
|
BOOST_SERIALIZATION_SPLIT_FREE(hku::KRecord)
|
|
|
|
#endif /* HKU_SUPPORT_SERIALIZATION */
|
|
|
|
#endif /* KRECORD_SERIALIZATION_H_ */
|