Skip to content

Commit

Permalink
fixed linker error due to WorkerProcess::mainLoop() definition not be…
Browse files Browse the repository at this point in the history
…ing in br namespace
  • Loading branch information
Josh Klontz authored and Josh Klontz committed Oct 24, 2013
1 parent 535886a commit 885c3ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
6 changes: 2 additions & 4 deletions openbr/plugins/openbr_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,18 +242,16 @@ class BR_EXPORT CompositeTransform : public TimeVaryingTransform

class EnrollmentWorker;

class WorkerProcess
// Implemented in plugins/process.cpp
struct WorkerProcess
{
public:

QString transform;
QString baseName;
EnrollmentWorker * processInterface;

void mainLoop();
};


}

#endif // OPENBR_INTERNAL_H
8 changes: 0 additions & 8 deletions openbr/plugins/process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ class EnrollmentWorker
}
}
}

This comment has been minimized.

Copy link
@jklontz

jklontz Oct 24, 2013

Member

In hindsight, this commit appears to do nothing. Perhaps my linker issue was due to something else...

This comment has been minimized.

Copy link
@jklontz

jklontz Oct 24, 2013

Member

Yeah, sorry for the noise, I had forgotten to re-run cmake so this file wasn't compiled in...


};

void WorkerProcess::mainLoop()
Expand Down Expand Up @@ -254,12 +252,6 @@ class ProcessWrapperTransform : public TimeVaryingTransform

BR_REGISTER(Transform, ProcessWrapperTransform)


}


#include "process.moc"




0 comments on commit 885c3ec

Please sign in to comment.