subversion uses $ instead of $
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@754 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
3edfa0ba99
commit
b831f56c1f
15 changed files with 51 additions and 2 deletions
|
@ -13,6 +13,9 @@
|
|||
#ifndef ALLOCATOR_STRING_STORAGE_INC_
|
||||
#define ALLOCATOR_STRING_STORAGE_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
/* This is the template for a storage policy
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
template <typename E, class A = @>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef COW_STRING_OPT_INC_
|
||||
#define COW_STRING_OPT_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// class template CowStringOpt
|
||||
// Implements Copy on Write over any storage
|
||||
|
|
|
@ -13,6 +13,8 @@
|
|||
#ifndef FLEX_STRING_INC_
|
||||
#define FLEX_STRING_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
// <THE> string
|
||||
#include "flex_string_shell.h"
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef FLEX_STRING_DETAILS_INC_
|
||||
#define FLEX_STRING_DETAILS_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace flex_string_details
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef FLEX_STRING_SHELL_INC_
|
||||
#define FLEX_STRING_SHELL_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// class template flex_string
|
||||
// This file does not include any storage policy headers
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef SIMPLE_STRING_STORAGE_INC_
|
||||
#define SIMPLE_STRING_STORAGE_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
/* This is the template for a storage policy
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
template <typename E, class A = @>
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef SMALL_STRING_OPT_INC_
|
||||
#define SMALL_STRING_OPT_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// class template SmallStringOpt
|
||||
// Builds the small string optimization over any other storage
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#ifndef VECTOR_STRING_STORAGE_INC_
|
||||
#define VECTOR_STRING_STORAGE_INC_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
/* This is the template for a storage policy
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
template <typename E, class A = @>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef YASLI_PLATFORM_H_
|
||||
#define YASLI_PLATFORM_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
// Most conservative
|
||||
|
||||
#define YASLI_HAS_EFFICIENT_MSIZE 0
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#ifndef RANDOM_H_
|
||||
#define RANDOM_H_
|
||||
#ifndef YASLI_RANDOM_H_
|
||||
#define YASLI_RANDOM_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include <ctime>
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef YASLI_FILL_ITERATOR_H_
|
||||
#define YASLI_FILL_ITERATOR_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include <iterator>
|
||||
#include <cstddef>
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef YASLI_MEMORY_H_
|
||||
#define YASLI_MEMORY_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include "yasli_traits.h"
|
||||
#include "yasli_protocols.h"//!
|
||||
#include <cassert>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef YASLI_PROTOCOLS_H_
|
||||
#define YASLI_PROTOCOLS_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include <complex>
|
||||
#include <functional>
|
||||
#include "yasli_memory.h"
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
#ifndef YASLI_TRAITS_H_
|
||||
#define YASLI_TRAITS_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
|
||||
|
||||
namespace yasli_nstd
|
||||
{
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#ifndef YASLI_VECTOR_H_
|
||||
#define YASLI_VECTOR_H_
|
||||
|
||||
// $Id$
|
||||
|
||||
|
||||
#include "platform.h"
|
||||
#include "yasli_fill_iterator.h"
|
||||
#include "yasli_memory.h"
|
||||
|
@ -574,3 +580,4 @@ namespace yasli_protocols
|
|||
};
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Reference in a new issue