Rename “index.{cc,h}” to the more appropriate “item.{cc,h}”

This commit is contained in:
Jacob Bandes-Storch
2013-07-27 00:24:16 -07:00
committed by Allan Odgaard
parent 97199ad0a6
commit f2df57df60
6 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
#import <updater/updater.h>
#import <bundles/index.h>
#import <bundles/item.h>
PUBLIC extern NSString* const kUserDefaultsDisableBundleUpdatesKey;
PUBLIC extern NSString* const kUserDefaultsLastBundleUpdateCheckKey;

View File

@@ -2,7 +2,7 @@
#define LOAD_BUNDLES_H_C8BVI372
#include "fs_cache.h"
#include <bundles/index.h>
#include <bundles/item.h>
#include <oak/misc.h>
std::pair<std::vector<bundles::item_ptr>, std::map< oak::uuid_t, std::vector<oak::uuid_t>>> create_bundle_index (std::vector<std::string> const& bundlesPaths, fs::cache_t& cache);

View File

@@ -1,7 +1,7 @@
#ifndef BUNDLES_H_Q267K08K
#define BUNDLES_H_Q267K08K
#include "index.h"
#include "item.h"
#include "wrappers.h"
#include "locations.h"
#include "query.h"

View File

@@ -1,4 +1,4 @@
#include "index.h"
#include "item.h"
#include "query.h" // required by item_t::environment
#include "locations.h" // required by item_t::save
#include <plist/delta.h>

View File

@@ -1,5 +1,5 @@
#ifndef BUNDLES_INDEX_H_H2GEVOXK
#define BUNDLES_INDEX_H_H2GEVOXK
#ifndef BUNDLES_ITEM_H_H2GEVOXK
#define BUNDLES_ITEM_H_H2GEVOXK
#include <oak/misc.h>
#include <plist/plist.h>
@@ -115,4 +115,4 @@ namespace bundles
} /* bundles */
#endif /* end of include guard: BUNDLES_INDEX_H_H2GEVOXK */
#endif /* end of include guard: BUNDLES_ITEM_H_H2GEVOXK */

View File

@@ -1,7 +1,7 @@
#ifndef BUNDLES_QUERY_H_7L9NPR0I
#define BUNDLES_QUERY_H_7L9NPR0I
#include "index.h"
#include "item.h"
namespace bundles
{