Skip to content

Commit

Permalink
Move associative_vector and MbHelpers to xrCore.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Oct 6, 2015
1 parent a6e432f commit c55786c
Show file tree
Hide file tree
Showing 69 changed files with 662 additions and 848 deletions.
2 changes: 1 addition & 1 deletion src/utils/mp_configs_verifyer/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
#include <stdio.h>
#include <conio.h>
#include "xrServerEntities/object_broker.h"
#include "xrServerEntities/associative_vector.h"
#include "xrCore/Containers/AssociativeVector.hpp"

#endif // #define PCH_H_INCLUDED
2 changes: 1 addition & 1 deletion src/utils/mp_screenshots_info/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
#include <stdio.h>
#include <conio.h>
#include "xrServerEntities/object_broker.h"
#include "xrServerEntities/associative_vector.h"
#include "xrCore/Containers/AssociativeVector.hpp"

#endif // #define PCH_H_INCLUDED
4 changes: 2 additions & 2 deletions src/utils/xrAI/patrol_path_storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ class CGameLevelCrossTable;
class CGameGraph;

#include "object_interfaces.h"
#include "associative_vector.h"
#include "xrCore/Containers/AssociativeVector.hpp"

class CPatrolPathStorage : public IPureSerializeObject<IReader,IWriter> {
private:
typedef IPureSerializeObject<IReader,IWriter> inherited;

public:
typedef associative_vector<shared_str,CPatrolPath*> PATROL_REGISTRY;
typedef AssociativeVector<shared_str,CPatrolPath*> PATROL_REGISTRY;
typedef PATROL_REGISTRY::iterator iterator;
typedef PATROL_REGISTRY::const_iterator const_iterator;

Expand Down
4 changes: 0 additions & 4 deletions src/utils/xrSE_Factory/xrSE_Factory.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,6 @@
<ClInclude Include="..\..\xrServerEntities\alife_monster_brain_inline.h" />
<ClInclude Include="..\..\xrServerEntities\alife_movement_manager_holder.h" />
<ClInclude Include="..\..\xrServerEntities\alife_space.h" />
<ClInclude Include="..\..\xrServerEntities\associative_vector.h" />
<ClInclude Include="..\..\xrServerEntities\associative_vector_compare_predicate.h" />
<ClInclude Include="..\..\xrServerEntities\associative_vector_compare_predicate_inline.h" />
<ClInclude Include="..\..\xrServerEntities\associative_vector_inline.h" />
<ClInclude Include="..\..\xrServerEntities\character_info.h" />
<ClInclude Include="..\..\xrServerEntities\character_info_defs.h" />
<ClInclude Include="..\..\xrServerEntities\clsid_game.h" />
Expand Down
15 changes: 0 additions & 15 deletions src/utils/xrSE_Factory/xrSE_Factory.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
<Filter Include="Common\SmartCast">
<UniqueIdentifier>{ea79b7ec-1151-459a-a904-83c9d5bfdd2a}</UniqueIdentifier>
</Filter>
<Filter Include="Common\associative_vector">
<UniqueIdentifier>{d137ef10-7858-429e-9d83-c9adca7a8920}</UniqueIdentifier>
</Filter>
<Filter Include="Scripts">
<UniqueIdentifier>{beab8f12-fdda-4d4c-bff0-faf824bb05d7}</UniqueIdentifier>
</Filter>
Expand Down Expand Up @@ -276,18 +273,6 @@
<ClInclude Include="..\..\xrServerEntities\smart_cast_impl2.h">
<Filter>Common\SmartCast</Filter>
</ClInclude>
<ClInclude Include="..\..\xrServerEntities\associative_vector.h">
<Filter>Common\associative_vector</Filter>
</ClInclude>
<ClInclude Include="..\..\xrServerEntities\associative_vector_compare_predicate.h">
<Filter>Common\associative_vector</Filter>
</ClInclude>
<ClInclude Include="..\..\xrServerEntities\associative_vector_compare_predicate_inline.h">
<Filter>Common\associative_vector</Filter>
</ClInclude>
<ClInclude Include="..\..\xrServerEntities\associative_vector_inline.h">
<Filter>Common\associative_vector</Filter>
</ClInclude>
<ClInclude Include="..\..\xrServerEntities\script_export_macroses.h">
<Filter>Scripts</Filter>
</ClInclude>
Expand Down
Loading

0 comments on commit c55786c

Please sign in to comment.