diff options
Diffstat (limited to 'gentoobrowse-api/domain/converters.h')
-rw-r--r-- | gentoobrowse-api/domain/converters.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gentoobrowse-api/domain/converters.h b/gentoobrowse-api/domain/converters.h index db72c0f..35583e5 100644 --- a/gentoobrowse-api/domain/converters.h +++ b/gentoobrowse-api/domain/converters.h @@ -1,14 +1,16 @@ #pragma once -#include <boost/date_time/posix_time/posix_time.hpp> -#include <portage-models.h> -#include <slicer/modelPartsTypes.impl.h> +#include <boost/date_time/posix_time/ptime.hpp> +#include <slicer/modelParts.h> +#include <slicer/modelPartsTypes.h> +#include <string> +#include <vector> #include <visibility.h> namespace Slicer { template<typename T> class DLL_PUBLIC PqArray : public ModelPartForSequence<std::vector<T>> { public: - PqArray(std::vector<T> *); + explicit PqArray(std::vector<T> *); void SetValue(ValueSource &&) override; bool GetValue(ValueTarget &&) override; |