From b42ed73a1b241c0e93ee03c43c4584b41c549bac Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 25 May 2011 10:28:17 +0300 Subject: [PATCH] Move files around to prepare for assimilation into core --- Build | 13 ++++++++++--- source/{ => stringcodec}/ascii.cpp | 0 source/{ => stringcodec}/ascii.h | 0 source/{ => stringcodec}/codec.cpp | 0 source/{ => stringcodec}/codec.h | 0 source/{ => stringcodec}/codecutils.cpp | 0 source/{ => stringcodec}/codecutils.h | 0 source/{ => stringcodec}/iso2022jp.cpp | 0 source/{ => stringcodec}/iso2022jp.h | 0 source/{ => stringcodec}/iso646fi.cpp | 0 source/{ => stringcodec}/iso646fi.h | 0 source/{ => stringcodec}/iso88591.cpp | 0 source/{ => stringcodec}/iso88591.h | 0 source/{ => stringcodec}/iso885915.cpp | 0 source/{ => stringcodec}/iso885915.h | 0 source/{ => stringcodec}/jisx0201.cpp | 0 source/{ => stringcodec}/jisx0201.h | 0 source/{ => stringcodec}/jisx0208.cpp | 0 source/{ => stringcodec}/jisx0208.h | 0 source/{ => stringcodec}/jisx0208.table | 0 source/{ => stringcodec}/utf8.cpp | 0 source/{ => stringcodec}/utf8.h | 0 source/{ => stringcodec}/windows1252.cpp | 0 source/{ => stringcodec}/windows1252.h | 0 source/{ => strings}/fmt.cpp | 0 source/{ => strings}/fmt.h | 0 source/{ => strings}/formatter.cpp | 0 source/{ => strings}/formatter.h | 0 source/{ => strings}/glob.cpp | 0 source/{ => strings}/glob.h | 0 source/{ => strings}/lexicalcast.cpp | 0 source/{ => strings}/lexicalcast.h | 0 source/{ => strings}/regex.cpp | 0 source/{ => strings}/regex.h | 0 source/{ => strings}/regmatch.cpp | 0 source/{ => strings}/regmatch.h | 0 source/{ => strings}/utils.cpp | 0 source/{ => strings}/utils.h | 0 38 files changed, 10 insertions(+), 3 deletions(-) rename source/{ => stringcodec}/ascii.cpp (100%) rename source/{ => stringcodec}/ascii.h (100%) rename source/{ => stringcodec}/codec.cpp (100%) rename source/{ => stringcodec}/codec.h (100%) rename source/{ => stringcodec}/codecutils.cpp (100%) rename source/{ => stringcodec}/codecutils.h (100%) rename source/{ => stringcodec}/iso2022jp.cpp (100%) rename source/{ => stringcodec}/iso2022jp.h (100%) rename source/{ => stringcodec}/iso646fi.cpp (100%) rename source/{ => stringcodec}/iso646fi.h (100%) rename source/{ => stringcodec}/iso88591.cpp (100%) rename source/{ => stringcodec}/iso88591.h (100%) rename source/{ => stringcodec}/iso885915.cpp (100%) rename source/{ => stringcodec}/iso885915.h (100%) rename source/{ => stringcodec}/jisx0201.cpp (100%) rename source/{ => stringcodec}/jisx0201.h (100%) rename source/{ => stringcodec}/jisx0208.cpp (100%) rename source/{ => stringcodec}/jisx0208.h (100%) rename source/{ => stringcodec}/jisx0208.table (100%) rename source/{ => stringcodec}/utf8.cpp (100%) rename source/{ => stringcodec}/utf8.h (100%) rename source/{ => stringcodec}/windows1252.cpp (100%) rename source/{ => stringcodec}/windows1252.h (100%) rename source/{ => strings}/fmt.cpp (100%) rename source/{ => strings}/fmt.h (100%) rename source/{ => strings}/formatter.cpp (100%) rename source/{ => strings}/formatter.h (100%) rename source/{ => strings}/glob.cpp (100%) rename source/{ => strings}/glob.h (100%) rename source/{ => strings}/lexicalcast.cpp (100%) rename source/{ => strings}/lexicalcast.h (100%) rename source/{ => strings}/regex.cpp (100%) rename source/{ => strings}/regex.h (100%) rename source/{ => strings}/regmatch.cpp (100%) rename source/{ => strings}/regmatch.h (100%) rename source/{ => strings}/utils.cpp (100%) rename source/{ => strings}/utils.h (100%) diff --git a/Build b/Build index eb16f4b..06545dc 100644 --- a/Build +++ b/Build @@ -9,13 +9,20 @@ package "mspstrings" headers "msp/strings" { - source "source"; + source "source/strings"; + install true; + }; + + headers "msp/stringcodec" + { + source "source/stringcodec"; install true; }; library "mspstrings" { - source "source"; + source "source/strings"; + source "source/stringcodec"; install true; }; @@ -40,6 +47,6 @@ package "mspstrings" tarball "@src" { source "License.txt"; - source "source/jisx0208.table"; + source "source/stringcodec/jisx0208.table"; }; }; diff --git a/source/ascii.cpp b/source/stringcodec/ascii.cpp similarity index 100% rename from source/ascii.cpp rename to source/stringcodec/ascii.cpp diff --git a/source/ascii.h b/source/stringcodec/ascii.h similarity index 100% rename from source/ascii.h rename to source/stringcodec/ascii.h diff --git a/source/codec.cpp b/source/stringcodec/codec.cpp similarity index 100% rename from source/codec.cpp rename to source/stringcodec/codec.cpp diff --git a/source/codec.h b/source/stringcodec/codec.h similarity index 100% rename from source/codec.h rename to source/stringcodec/codec.h diff --git a/source/codecutils.cpp b/source/stringcodec/codecutils.cpp similarity index 100% rename from source/codecutils.cpp rename to source/stringcodec/codecutils.cpp diff --git a/source/codecutils.h b/source/stringcodec/codecutils.h similarity index 100% rename from source/codecutils.h rename to source/stringcodec/codecutils.h diff --git a/source/iso2022jp.cpp b/source/stringcodec/iso2022jp.cpp similarity index 100% rename from source/iso2022jp.cpp rename to source/stringcodec/iso2022jp.cpp diff --git a/source/iso2022jp.h b/source/stringcodec/iso2022jp.h similarity index 100% rename from source/iso2022jp.h rename to source/stringcodec/iso2022jp.h diff --git a/source/iso646fi.cpp b/source/stringcodec/iso646fi.cpp similarity index 100% rename from source/iso646fi.cpp rename to source/stringcodec/iso646fi.cpp diff --git a/source/iso646fi.h b/source/stringcodec/iso646fi.h similarity index 100% rename from source/iso646fi.h rename to source/stringcodec/iso646fi.h diff --git a/source/iso88591.cpp b/source/stringcodec/iso88591.cpp similarity index 100% rename from source/iso88591.cpp rename to source/stringcodec/iso88591.cpp diff --git a/source/iso88591.h b/source/stringcodec/iso88591.h similarity index 100% rename from source/iso88591.h rename to source/stringcodec/iso88591.h diff --git a/source/iso885915.cpp b/source/stringcodec/iso885915.cpp similarity index 100% rename from source/iso885915.cpp rename to source/stringcodec/iso885915.cpp diff --git a/source/iso885915.h b/source/stringcodec/iso885915.h similarity index 100% rename from source/iso885915.h rename to source/stringcodec/iso885915.h diff --git a/source/jisx0201.cpp b/source/stringcodec/jisx0201.cpp similarity index 100% rename from source/jisx0201.cpp rename to source/stringcodec/jisx0201.cpp diff --git a/source/jisx0201.h b/source/stringcodec/jisx0201.h similarity index 100% rename from source/jisx0201.h rename to source/stringcodec/jisx0201.h diff --git a/source/jisx0208.cpp b/source/stringcodec/jisx0208.cpp similarity index 100% rename from source/jisx0208.cpp rename to source/stringcodec/jisx0208.cpp diff --git a/source/jisx0208.h b/source/stringcodec/jisx0208.h similarity index 100% rename from source/jisx0208.h rename to source/stringcodec/jisx0208.h diff --git a/source/jisx0208.table b/source/stringcodec/jisx0208.table similarity index 100% rename from source/jisx0208.table rename to source/stringcodec/jisx0208.table diff --git a/source/utf8.cpp b/source/stringcodec/utf8.cpp similarity index 100% rename from source/utf8.cpp rename to source/stringcodec/utf8.cpp diff --git a/source/utf8.h b/source/stringcodec/utf8.h similarity index 100% rename from source/utf8.h rename to source/stringcodec/utf8.h diff --git a/source/windows1252.cpp b/source/stringcodec/windows1252.cpp similarity index 100% rename from source/windows1252.cpp rename to source/stringcodec/windows1252.cpp diff --git a/source/windows1252.h b/source/stringcodec/windows1252.h similarity index 100% rename from source/windows1252.h rename to source/stringcodec/windows1252.h diff --git a/source/fmt.cpp b/source/strings/fmt.cpp similarity index 100% rename from source/fmt.cpp rename to source/strings/fmt.cpp diff --git a/source/fmt.h b/source/strings/fmt.h similarity index 100% rename from source/fmt.h rename to source/strings/fmt.h diff --git a/source/formatter.cpp b/source/strings/formatter.cpp similarity index 100% rename from source/formatter.cpp rename to source/strings/formatter.cpp diff --git a/source/formatter.h b/source/strings/formatter.h similarity index 100% rename from source/formatter.h rename to source/strings/formatter.h diff --git a/source/glob.cpp b/source/strings/glob.cpp similarity index 100% rename from source/glob.cpp rename to source/strings/glob.cpp diff --git a/source/glob.h b/source/strings/glob.h similarity index 100% rename from source/glob.h rename to source/strings/glob.h diff --git a/source/lexicalcast.cpp b/source/strings/lexicalcast.cpp similarity index 100% rename from source/lexicalcast.cpp rename to source/strings/lexicalcast.cpp diff --git a/source/lexicalcast.h b/source/strings/lexicalcast.h similarity index 100% rename from source/lexicalcast.h rename to source/strings/lexicalcast.h diff --git a/source/regex.cpp b/source/strings/regex.cpp similarity index 100% rename from source/regex.cpp rename to source/strings/regex.cpp diff --git a/source/regex.h b/source/strings/regex.h similarity index 100% rename from source/regex.h rename to source/strings/regex.h diff --git a/source/regmatch.cpp b/source/strings/regmatch.cpp similarity index 100% rename from source/regmatch.cpp rename to source/strings/regmatch.cpp diff --git a/source/regmatch.h b/source/strings/regmatch.h similarity index 100% rename from source/regmatch.h rename to source/strings/regmatch.h diff --git a/source/utils.cpp b/source/strings/utils.cpp similarity index 100% rename from source/utils.cpp rename to source/strings/utils.cpp diff --git a/source/utils.h b/source/strings/utils.h similarity index 100% rename from source/utils.h rename to source/strings/utils.h -- 2.43.0