1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
/*
* The Sleuth Kit
*
* Contact: Brian Carrier [carrier <at> sleuthkit [dot] org]
* Copyright (c) 2011-2012 Basis Technology Corporation. All Rights
* reserved.
*
* This software is distributed under the Common Public License 1.0
*/
/**
* \file SummaryReport.h
* Contains the declaration of a function that creates a blackboard artifacts report.
*/
// C/C++ standard library includes
#include <string>
namespace TskSummaryReport
{
void generateReport(const std::string &reportPath);
}
|