Added filename property in json files Added JsonWritter class for convenience git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@369 620bd6b2-0a58-f614-fd9a-1bd335dccda9
22 lines
318 B
C++
22 lines
318 B
C++
/*
|
|
* JsonWriter.h
|
|
*
|
|
* Created on: 2014-08-03
|
|
* Author: mathieu
|
|
*/
|
|
|
|
#ifndef JSONWRITER_H_
|
|
#define JSONWRITER_H_
|
|
|
|
#include "find_object/DetectionInfo.h"
|
|
|
|
class JsonWriter
|
|
{
|
|
public:
|
|
static bool available();
|
|
static void write(const DetectionInfo & info, const QString & path);
|
|
};
|
|
|
|
|
|
#endif /* JSONWRITER_H_ */
|