1
0
Fork 0

renamed files

This commit is contained in:
Jan Steemann 2015-08-26 21:49:15 +02:00
parent 21793ff9f7
commit cbd43b3839
5 changed files with 7 additions and 7 deletions

View File

@ -141,6 +141,7 @@ add_executable(
Indexes/PathBasedIndex.cpp Indexes/PathBasedIndex.cpp
Indexes/PrimaryIndex.cpp Indexes/PrimaryIndex.cpp
Indexes/SkiplistIndex2.cpp Indexes/SkiplistIndex2.cpp
Indexes/skiplist-helper.cpp
IndexOperators/index-operator.cpp IndexOperators/index-operator.cpp
Replication/ContinuousSyncer.cpp Replication/ContinuousSyncer.cpp
Replication/InitialSyncer.cpp Replication/InitialSyncer.cpp
@ -182,7 +183,6 @@ add_executable(
Scheduler/Task.cpp Scheduler/Task.cpp
Scheduler/TaskManager.cpp Scheduler/TaskManager.cpp
Scheduler/TimerTask.cpp Scheduler/TimerTask.cpp
SkipLists/skiplistIndex.cpp
Statistics/statistics.cpp Statistics/statistics.cpp
Utils/CollectionExport.cpp Utils/CollectionExport.cpp
Utils/Cursor.cpp Utils/Cursor.cpp

View File

@ -32,8 +32,8 @@
#include "Basics/Common.h" #include "Basics/Common.h"
#include "Indexes/PathBasedIndex.h" #include "Indexes/PathBasedIndex.h"
#include "Indexes/skiplist-helper.h"
#include "IndexOperators/index-operator.h" #include "IndexOperators/index-operator.h"
#include "SkipLists/skiplistIndex.h"
#include "VocBase/shaped-json.h" #include "VocBase/shaped-json.h"
#include "VocBase/vocbase.h" #include "VocBase/vocbase.h"
#include "VocBase/voc-types.h" #include "VocBase/voc-types.h"

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @brief skiplist index /// @brief skiplist index helper
/// ///
/// @file /// @file
/// ///
@ -27,7 +27,7 @@
/// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany /// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#include "skiplistIndex.h" #include "skiplist-helper.h"
#include "Basics/Utf8Helper.h" #include "Basics/Utf8Helper.h"
#include "VocBase/document-collection.h" #include "VocBase/document-collection.h"
#include "VocBase/shaped-json.h" #include "VocBase/shaped-json.h"

View File

@ -27,8 +27,8 @@
/// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany /// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#ifndef ARANGODB_SKIP_LISTS_SKIPLIST_INDEX_H #ifndef ARANGODB_INDEXES_SKIPLIST_HELPER_H
#define ARANGODB_SKIP_LISTS_SKIPLIST_INDEX_H 1 #define ARANGODB_INDEXES_SKIPLIST_HELPER_H 1
#include "Basics/Common.h" #include "Basics/Common.h"
#include "Basics/SkipList.h" #include "Basics/SkipList.h"

View File

@ -99,6 +99,7 @@ arangod_libarangod_a_SOURCES = \
arangod/Indexes/PathBasedIndex.cpp \ arangod/Indexes/PathBasedIndex.cpp \
arangod/Indexes/PrimaryIndex.cpp \ arangod/Indexes/PrimaryIndex.cpp \
arangod/Indexes/SkiplistIndex2.cpp \ arangod/Indexes/SkiplistIndex2.cpp \
arangod/Indexes/skiplist-helper.cpp \
arangod/IndexOperators/index-operator.cpp \ arangod/IndexOperators/index-operator.cpp \
arangod/Replication/ContinuousSyncer.cpp \ arangod/Replication/ContinuousSyncer.cpp \
arangod/Replication/InitialSyncer.cpp \ arangod/Replication/InitialSyncer.cpp \
@ -140,7 +141,6 @@ arangod_libarangod_a_SOURCES = \
arangod/Scheduler/Task.cpp \ arangod/Scheduler/Task.cpp \
arangod/Scheduler/TaskManager.cpp \ arangod/Scheduler/TaskManager.cpp \
arangod/Scheduler/TimerTask.cpp \ arangod/Scheduler/TimerTask.cpp \
arangod/SkipLists/skiplistIndex.cpp \
arangod/Statistics/statistics.cpp \ arangod/Statistics/statistics.cpp \
arangod/Utils/CollectionExport.cpp \ arangod/Utils/CollectionExport.cpp \
arangod/Utils/Cursor.cpp \ arangod/Utils/Cursor.cpp \