Moving packs to top level include directory

I could've swore that I did this already, but this moves
`include/osquery/config/packs.h` to `include/osquery/packs.h`.
This commit is contained in:
Mike Arpaia 2015-09-16 15:48:44 -07:00
parent 52daba67b7
commit 73045e4974
4 changed files with 3 additions and 3 deletions

View File

@ -21,9 +21,9 @@
#include <boost/thread/shared_mutex.hpp>
#include <osquery/core.h>
#include <osquery/config/packs.h>
#include <osquery/database.h>
#include <osquery/flags.h>
#include <osquery/packs.h>
#include <osquery/registry.h>
#include <osquery/status.h>

View File

@ -13,8 +13,8 @@
#include <boost/property_tree/json_parser.hpp>
#include <osquery/core.h>
#include <osquery/config/packs.h>
#include <osquery/logger.h>
#include <osquery/packs.h>
#include <osquery/sql.h>
namespace pt = boost::property_tree;

View File

@ -9,9 +9,9 @@
*/
#include <gtest/gtest.h>
#include <osquery/config/packs.h>
#include <osquery/core.h>
#include <osquery/filesystem.h>
#include <osquery/packs.h>
#include "osquery/core/test_util.h"