diff options
Diffstat (limited to 'gentoobrowse-api/domain/converters.h')
-rw-r--r-- | gentoobrowse-api/domain/converters.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gentoobrowse-api/domain/converters.h b/gentoobrowse-api/domain/converters.h index 35583e5..3805149 100644 --- a/gentoobrowse-api/domain/converters.h +++ b/gentoobrowse-api/domain/converters.h @@ -10,15 +10,15 @@ namespace Slicer { template<typename T> class DLL_PUBLIC PqArray : public ModelPartForSequence<std::vector<T>> { public: - explicit PqArray(std::vector<T> *); + using ModelPartForSequence<std::vector<T>>::ModelPartForSequence; void SetValue(ValueSource &&) override; bool GetValue(ValueTarget &&) override; }; DLL_PUBLIC - boost::posix_time::ptime shortDateToPosixTime(const std::string & s); + boost::posix_time::ptime shortDateToPosixTime(const std::string & input); DLL_PUBLIC - std::string posixTimeToShortDate(const boost::posix_time::ptime & s); + std::string posixTimeToShortDate(const boost::posix_time::ptime & input); } |