text: Eliminated module

This commit is contained in:
Paul Beckingham 2016-12-11 17:51:44 -05:00
parent ec84d0f372
commit a6c8303839
11 changed files with 0 additions and 93 deletions

View file

@ -32,7 +32,6 @@ add_library (task CLI2.cpp CLI2.h
recur.cpp
rules.cpp
sort.cpp
text.cpp text.h
util.cpp util.h)
add_library (libshared libshared/src/Datetime.cpp libshared/src/Datetime.h

View file

@ -27,7 +27,6 @@
#include <cmake.h>
#include <ColStart.h>
#include <Context.h>
#include <text.h>
#include <utf8.h>
#include <i18n.h>

View file

@ -33,7 +33,6 @@
#include <Filter.h>
#include <format.h>
#include <shared.h>
#include <text.h>
#include <util.h>
#include <i18n.h>
#include <main.h>

View file

@ -32,7 +32,6 @@
#include <Filter.h>
#include <ViewText.h>
#include <format.h>
#include <text.h>
#include <util.h>
#include <i18n.h>
#include <main.h>

View file

@ -35,7 +35,6 @@
#include <Filter.h>
#include <main.h>
#include <format.h>
#include <text.h>
#include <util.h>
#include <i18n.h>

View file

@ -34,7 +34,6 @@
#include <ViewText.h>
#include <ISO8601.h>
#include <format.h>
#include <text.h>
#include <util.h>
#include <i18n.h>
#include <main.h>

View file

@ -34,7 +34,6 @@
#include <main.h>
#include <format.h>
#include <shared.h>
#include <text.h>
#include <util.h>
#include <i18n.h>

View file

@ -28,7 +28,6 @@
#include <stdlib.h>
#include <Context.h>
#include <ISO8601.h>
#include <text.h>
#include <shared.h>
#include <main.h>

View file

@ -1,46 +0,0 @@
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2016, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// http://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#include <cmake.h>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <vector>
#include <string>
#include <strings.h>
#include <Context.h>
#include <Lexer.h>
#include <math.h>
#include <util.h>
#include <shared.h>
#include <text.h>
#include <utf8.h>
#include <i18n.h>
extern Context context;
////////////////////////////////////////////////////////////////////////////////

View file

@ -1,38 +0,0 @@
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2016, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
// http://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#ifndef INCLUDED_TEXT
#define INCLUDED_TEXT
#include <set>
#include <sstream>
#include <string>
#include <vector>
// text.cpp, Non-UTF-8 aware.
#endif
////////////////////////////////////////////////////////////////////////////////

View file

@ -53,7 +53,6 @@
#include <sys/select.h>
#include <Lexer.h>
#include <text.h>
#include <utf8.h>
#include <main.h>
#include <i18n.h>