Skip to content
Snippets Groups Projects
Commit 66e8cdbd authored by jotpio's avatar jotpio
Browse files
parent e85dc86a
No related branches found
No related tags found
No related merge requests found
Pipeline #17048 passed
Pipeline: biotracker

#17051

    ...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
    #include <QPoint> // QPoint #include <QPoint> // QPoint
    #include <QString> #include <QString>
    #include <QStringList> #include <QStringList>
    #include <QCoreApplication>
    int BioTrackerUtilsMisc::split(std::string &txt, std::vector<std::string> &strs, char ch) int BioTrackerUtilsMisc::split(std::string &txt, std::vector<std::string> &strs, char ch)
    { {
    ...@@ -52,7 +53,7 @@ std::string BioTrackerUtilsMisc::getTimeAndDate(std::string prefix, std::string ...@@ -52,7 +53,7 @@ std::string BioTrackerUtilsMisc::getTimeAndDate(std::string prefix, std::string
    out += timeStampF; out += timeStampF;
    out += "_"; out += "_";
    out += std::to_string(_getpid()); out += std::to_string(QCoreApplication::applicationPid());
    out += suffix; out += suffix;
    ......
    ...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
    #include <string> #include <string>
    #include <time.h> #include <time.h>
    #include <cv.h> #include <cv.h>
    #include <stdio.h>
    #include <process.h>
    #include <QPoint> #include <QPoint>
    namespace BioTrackerUtilsMisc{ namespace BioTrackerUtilsMisc{
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment