Merge branch 'recurrence' into 1.4.0
This commit is contained in:
3
AUTHORS
3
AUTHORS
@@ -12,4 +12,7 @@ With thanks to:
|
|||||||
Thomas Engel
|
Thomas Engel
|
||||||
Nishiishii
|
Nishiishii
|
||||||
galvanizd
|
galvanizd
|
||||||
|
H. İbrahim Güngör
|
||||||
|
Stas Antons
|
||||||
|
Andy Lester
|
||||||
|
|
||||||
|
|||||||
@@ -13,13 +13,18 @@ represents a feature release, and the Z represents a patch.
|
|||||||
|
|
||||||
|
|
||||||
1.4.0 ()
|
1.4.0 ()
|
||||||
|
+ New recurring tasks feature
|
||||||
+ "task undelete" can now undelete erroneously deleted tasks, provided no
|
+ "task undelete" can now undelete erroneously deleted tasks, provided no
|
||||||
reports have been run (and therefore TDB::gc run)
|
reports have been run (and therefore TDB::gc run)
|
||||||
+ Added averages to the "task history" report
|
+ Added averages to the "task history" report
|
||||||
+ Added ability to override ~/.taskrc with rc:<file>
|
+ Added ability to override ~/.taskrc with rc:<file>
|
||||||
+ Added bar chart history report "task ghistory"
|
+ Added bar chart history report "task ghistory"
|
||||||
|
+ Added task filtering on all reports
|
||||||
|
+ Automatically shuts off color, curses when output is not a tty
|
||||||
|
+ Supports relative due: dates (tomorrow, wednesday, 23rd, eom ...)
|
||||||
+ Bug: Fixed where Esc[0m sequences were being emitted for no good reason
|
+ Bug: Fixed where Esc[0m sequences were being emitted for no good reason
|
||||||
+ Bug: Fixed underlined table headers when color is turned off
|
+ Bug: Fixed underlined table headers when color is turned off
|
||||||
|
+ Bug: Adding a blank priority resulted in an assigned garbage value
|
||||||
|
|
||||||
------ reality -----------------------------------
|
------ reality -----------------------------------
|
||||||
|
|
||||||
|
|||||||
5
README
5
README
@@ -3,12 +3,13 @@ Thank you for taking a look at task. Task is a GTD utility featuring:
|
|||||||
- Robust C++ implementation
|
- Robust C++ implementation
|
||||||
- Tags
|
- Tags
|
||||||
- Colorful, tabular output
|
- Colorful, tabular output
|
||||||
- Reports
|
- Reports, graphs
|
||||||
- Lots of commands
|
- Lots of commands
|
||||||
- Low-level API
|
- Low-level API
|
||||||
- Abbreviations for all commands, options
|
- Abbreviations for all commands, options
|
||||||
- Multi-user file locking
|
- Multi-user file locking
|
||||||
- Clean architecture allowing quick addition of new features
|
- Clean architecture allowing quick addition of new features
|
||||||
|
- Recurring tasks
|
||||||
|
|
||||||
It is intended that features, mainly in the form of reports will be added
|
It is intended that features, mainly in the form of reports will be added
|
||||||
frequently, with best practices and useful reports evolving from usage patterns.
|
frequently, with best practices and useful reports evolving from usage patterns.
|
||||||
@@ -33,7 +34,7 @@ Task is based on ideas presented in the todo.sh script, found on:
|
|||||||
|
|
||||||
http://todotxt.org
|
http://todotxt.org
|
||||||
|
|
||||||
Task has a few more features than todo.sh, but fundamentally, they are both
|
Task has many more features than todo.sh, but fundamentally, they are both
|
||||||
working toward the same goals, which is to help you follow basic Getting Things
|
working toward the same goals, which is to help you follow basic Getting Things
|
||||||
Done (GTD) principles.
|
Done (GTD) principles.
|
||||||
|
|
||||||
|
|||||||
@@ -48,14 +48,20 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>Added new recurring tasks feature
|
||||||
<li>Added "task undelete" feature to restore a (very) recently deleted
|
<li>Added "task undelete" feature to restore a (very) recently deleted
|
||||||
task
|
task
|
||||||
<li>Added averages to the "task history" report
|
<li>Added averages to the "task history" report
|
||||||
<li>Added bar chart history report "task ghistory"
|
<li>Added bar chart history report "task ghistory"
|
||||||
<li>Added support for rc:<file> to allow override of the default
|
<li>Added support for rc:<file> to allow override of the default
|
||||||
~/.taskrc file
|
~/.taskrc file
|
||||||
|
<li>Added support for relative due: dates, such as "tomorrow", "friday",
|
||||||
|
"23rd", "eom"
|
||||||
|
<li>Added support for task filtering on all reports
|
||||||
|
<li>Automatically shuts off color, ncurses when output is not to a tty
|
||||||
<li>Fixed bug where Esc[0m sequences were being emitted for no good reason
|
<li>Fixed bug where Esc[0m sequences were being emitted for no good reason
|
||||||
<li>Fixed bug where table headers are underlined when color is turned off
|
<li>Fixed bug where table headers are underlined when color is turned off
|
||||||
|
<li>Fixed bug where adding a blank priority resulted in an assigned garbage value
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
17
ideas.txt
17
ideas.txt
@@ -16,14 +16,14 @@ User-Defined Reports
|
|||||||
ID UUID Project Priority Entry Start Due Active Tags Description
|
ID UUID Project Priority Entry Start Due Active Tags Description
|
||||||
|
|
||||||
Test Suite
|
Test Suite
|
||||||
allow .taskrc override
|
- allow .taskrc override
|
||||||
debug=on to cause all cout to be csv
|
- debug=on to cause all cout to be csv
|
||||||
regression tests for every bug, command, feature
|
- regression tests for every bug, command, feature
|
||||||
|
|
||||||
Recurrence
|
Recurrence
|
||||||
+ new T::status recurring (stored as R)
|
+ new T::status recurring (stored as R)
|
||||||
- new user-specifiable attributes - recur:<duration> [until:<date>]
|
+ new user-specifiable attributes - recur:<duration> [until:<date>]
|
||||||
- duration:
|
+ duration:
|
||||||
daily, day, 1d
|
daily, day, 1d
|
||||||
Nd
|
Nd
|
||||||
weekly, 1w
|
weekly, 1w
|
||||||
@@ -37,9 +37,9 @@ Recurrence
|
|||||||
biannual, biyearly
|
biannual, biyearly
|
||||||
annual, yearly, 1y
|
annual, yearly, 1y
|
||||||
Na, Ny
|
Na, Ny
|
||||||
- recur: without due: => Error
|
+ recur: without due: => Error
|
||||||
- until: without recur: => Error
|
+ until: without recur: => Error
|
||||||
- New file format (version 3): supports status R, recur:, until:, base:, range:
|
+ New file format: supports status R, recur:, until:, base:, range:
|
||||||
- on TDB.gc, adjust base: and compress range: for T::status == recurring
|
- on TDB.gc, adjust base: and compress range: for T::status == recurring
|
||||||
- all recurring tasks are removed from lists by T::*pendingT, and a synthetic
|
- all recurring tasks are removed from lists by T::*pendingT, and a synthetic
|
||||||
addendum is generated
|
addendum is generated
|
||||||
@@ -67,3 +67,4 @@ Recurrence
|
|||||||
5 Friday 7/13/2008 (not shown)
|
5 Friday 7/13/2008 (not shown)
|
||||||
6 Friday 7/20/2008 (not shown)
|
6 Friday 7/20/2008 (not shown)
|
||||||
7 Friday 7/27/2008 (not shown)
|
7 Friday 7/27/2008 (not shown)
|
||||||
|
|
||||||
|
|||||||
@@ -1,408 +0,0 @@
|
|||||||
Config.o Config.o: Config.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/fstream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc /usr/include/c++/4.0.0/sstream \
|
|
||||||
/usr/include/c++/4.0.0/bits/sstream.tcc /usr/include/sys/types.h \
|
|
||||||
/usr/include/sys/stat.h /usr/include/pwd.h task.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h Config.h Table.h color.h \
|
|
||||||
Grid.h color.h TDB.h T.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/fstream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/sstream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/sstream.tcc:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/stat.h:
|
|
||||||
|
|
||||||
/usr/include/pwd.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,392 +0,0 @@
|
|||||||
Date.o Date.o: Date.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc task.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h /usr/include/sys/types.h \
|
|
||||||
Config.h Table.h color.h Grid.h color.h TDB.h T.h ../auto.h Date.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
|
|
||||||
Date.h:
|
|
||||||
390
src/.deps/T.Po
390
src/.deps/T.Po
@@ -1,390 +0,0 @@
|
|||||||
T.o T.o: T.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc task.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h /usr/include/sys/types.h \
|
|
||||||
Config.h Table.h color.h Grid.h color.h TDB.h T.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
406
src/.deps/TDB.Po
406
src/.deps/TDB.Po
@@ -1,406 +0,0 @@
|
|||||||
TDB.o TDB.o: TDB.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/fstream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc /usr/include/sys/file.h \
|
|
||||||
/usr/include/sys/types.h /usr/include/sys/fcntl.h \
|
|
||||||
/usr/include/sys/queue.h task.h /usr/include/c++/4.0.0/vector \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h Config.h Table.h color.h \
|
|
||||||
Grid.h color.h TDB.h T.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/fstream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc:
|
|
||||||
|
|
||||||
/usr/include/sys/file.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/fcntl.h:
|
|
||||||
|
|
||||||
/usr/include/sys/queue.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,397 +0,0 @@
|
|||||||
Table.o Table.o: Table.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc Table.h \
|
|
||||||
/usr/include/c++/4.0.0/map /usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc color.h Grid.h Date.h task.h \
|
|
||||||
/usr/include/sys/types.h Config.h Table.h color.h TDB.h T.h T.h \
|
|
||||||
../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
Date.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,278 +0,0 @@
|
|||||||
color.o color.o: color.cpp /usr/include/c++/4.0.0/string \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/cstring /usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/_types.h /usr/include/sys/_types.h \
|
|
||||||
/usr/include/sys/cdefs.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/machine/signal.h /usr/include/i386/signal.h \
|
|
||||||
/usr/include/i386/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/unistd.h \
|
|
||||||
/usr/include/sys/unistd.h /usr/include/sys/select.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc color.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
@@ -1,393 +0,0 @@
|
|||||||
parse.o parse.o: parse.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/vector \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h Date.h task.h \
|
|
||||||
/usr/include/sys/types.h Config.h Table.h color.h Grid.h color.h TDB.h \
|
|
||||||
T.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
Date.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,392 +0,0 @@
|
|||||||
rules.o rules.o: rules.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc Config.h \
|
|
||||||
/usr/include/c++/4.0.0/map /usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc Table.h color.h Grid.h Date.h \
|
|
||||||
T.h task.h /usr/include/sys/types.h color.h TDB.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
Date.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,417 +0,0 @@
|
|||||||
task.o task.o: task.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/iomanip \
|
|
||||||
/usr/include/c++/4.0.0/functional /usr/include/c++/4.0.0/fstream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc /usr/include/sys/types.h \
|
|
||||||
/usr/include/pwd.h Config.h /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h \
|
|
||||||
/usr/include/c++/4.0.0/vector /usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc Date.h Table.h color.h Grid.h \
|
|
||||||
TDB.h T.h task.h color.h ../auto.h /usr/include/ncurses.h \
|
|
||||||
/usr/include/ncurses_dll.h /usr/include/unctrl.h /usr/include/curses.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iomanip:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/functional:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/fstream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/basic_file.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/fstream.tcc:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/pwd.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
Date.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
|
|
||||||
/usr/include/ncurses.h:
|
|
||||||
|
|
||||||
/usr/include/ncurses_dll.h:
|
|
||||||
|
|
||||||
/usr/include/unctrl.h:
|
|
||||||
|
|
||||||
/usr/include/curses.h:
|
|
||||||
@@ -1,390 +0,0 @@
|
|||||||
text.o text.o: text.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/vector \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc task.h \
|
|
||||||
/usr/include/c++/4.0.0/map /usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h /usr/include/sys/types.h \
|
|
||||||
Config.h Table.h color.h Grid.h color.h TDB.h T.h ../auto.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
@@ -1,395 +0,0 @@
|
|||||||
util.o util.o: util.cpp /usr/include/c++/4.0.0/iostream \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/ostream /usr/include/c++/4.0.0/ios \
|
|
||||||
/usr/include/c++/4.0.0/iosfwd \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h \
|
|
||||||
/usr/include/c++/4.0.0/clocale /usr/include/locale.h \
|
|
||||||
/usr/include/_locale.h /usr/include/sys/cdefs.h /usr/include/_types.h \
|
|
||||||
/usr/include/sys/_types.h /usr/include/machine/_types.h \
|
|
||||||
/usr/include/i386/_types.h /usr/include/c++/4.0.0/cstring \
|
|
||||||
/usr/include/c++/4.0.0/cstddef \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h \
|
|
||||||
/usr/include/string.h /usr/include/c++/4.0.0/cstdio \
|
|
||||||
/usr/include/stdio.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h \
|
|
||||||
/usr/include/pthread.h /usr/include/pthread_impl.h /usr/include/sched.h \
|
|
||||||
/usr/include/time.h /usr/include/_structs.h /usr/include/sys/_structs.h \
|
|
||||||
/usr/include/unistd.h /usr/include/sys/unistd.h \
|
|
||||||
/usr/include/sys/select.h /usr/include/sys/appleapiopts.h \
|
|
||||||
/usr/include/sys/_select.h /usr/include/c++/4.0.0/cctype \
|
|
||||||
/usr/include/ctype.h /usr/include/runetype.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h /usr/include/c++/4.0.0/cwchar \
|
|
||||||
/usr/include/c++/4.0.0/ctime /usr/include/wchar.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h \
|
|
||||||
/usr/include/_wctype.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h \
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h \
|
|
||||||
/usr/include/c++/4.0.0/exception \
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h \
|
|
||||||
/usr/include/c++/4.0.0/climits \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h \
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h \
|
|
||||||
/usr/include/limits.h /usr/include/machine/limits.h \
|
|
||||||
/usr/include/i386/limits.h /usr/include/i386/_limits.h \
|
|
||||||
/usr/include/sys/syslimits.h /usr/include/c++/4.0.0/cstdlib \
|
|
||||||
/usr/include/stdlib.h /usr/include/available.h /usr/include/sys/wait.h \
|
|
||||||
/usr/include/sys/signal.h /usr/include/machine/signal.h \
|
|
||||||
/usr/include/i386/signal.h /usr/include/i386/_structs.h \
|
|
||||||
/usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \
|
|
||||||
/usr/include/sys/resource.h /usr/include/machine/endian.h \
|
|
||||||
/usr/include/i386/endian.h /usr/include/sys/_endian.h \
|
|
||||||
/usr/include/libkern/_OSByteOrder.h \
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h /usr/include/alloca.h \
|
|
||||||
/usr/include/machine/types.h /usr/include/i386/types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h /usr/include/c++/4.0.0/cassert \
|
|
||||||
/usr/include/assert.h /usr/include/c++/4.0.0/bits/localefwd.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h \
|
|
||||||
/usr/include/c++/4.0.0/string /usr/include/c++/4.0.0/memory \
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h \
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h /usr/include/c++/4.0.0/new \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h \
|
|
||||||
/usr/include/c++/4.0.0/limits \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h \
|
|
||||||
/usr/include/c++/4.0.0/algorithm /usr/include/c++/4.0.0/bits/stl_algo.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc \
|
|
||||||
/usr/include/c++/4.0.0/streambuf \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h \
|
|
||||||
/usr/include/c++/4.0.0/cwctype /usr/include/wctype.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h \
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc \
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc /usr/include/c++/4.0.0/locale \
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc \
|
|
||||||
/usr/include/c++/4.0.0/typeinfo /usr/include/c++/4.0.0/istream \
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc /usr/include/c++/4.0.0/vector \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc /usr/include/sys/types.h \
|
|
||||||
/usr/include/sys/time.h Table.h /usr/include/c++/4.0.0/map \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h \
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h color.h Grid.h task.h \
|
|
||||||
Config.h color.h TDB.h T.h ../auto.h /usr/include/uuid/uuid.h
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++config.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/os_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ostream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ios:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/iosfwd:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++locale.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/clocale:
|
|
||||||
|
|
||||||
/usr/include/locale.h:
|
|
||||||
|
|
||||||
/usr/include/_locale.h:
|
|
||||||
|
|
||||||
/usr/include/sys/cdefs.h:
|
|
||||||
|
|
||||||
/usr/include/_types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_types.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstring:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstddef:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stddef.h:
|
|
||||||
|
|
||||||
/usr/include/string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdio:
|
|
||||||
|
|
||||||
/usr/include/stdio.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++io.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/gthr-default.h:
|
|
||||||
|
|
||||||
/usr/include/pthread.h:
|
|
||||||
|
|
||||||
/usr/include/pthread_impl.h:
|
|
||||||
|
|
||||||
/usr/include/sched.h:
|
|
||||||
|
|
||||||
/usr/include/time.h:
|
|
||||||
|
|
||||||
/usr/include/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/unistd.h:
|
|
||||||
|
|
||||||
/usr/include/sys/select.h:
|
|
||||||
|
|
||||||
/usr/include/sys/appleapiopts.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_select.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cctype:
|
|
||||||
|
|
||||||
/usr/include/ctype.h:
|
|
||||||
|
|
||||||
/usr/include/runetype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stringfwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/postypes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwchar:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ctime:
|
|
||||||
|
|
||||||
/usr/include/wchar.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdarg.h:
|
|
||||||
|
|
||||||
/usr/include/_wctype.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/stdint.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/functexcept.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception_defines.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/exception:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/char_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algobase.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/climits:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/limits.h:
|
|
||||||
|
|
||||||
/usr/lib/gcc/i686-apple-darwin9/4.0.1/include/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/limits.h:
|
|
||||||
|
|
||||||
/usr/include/machine/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/limits.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_limits.h:
|
|
||||||
|
|
||||||
/usr/include/sys/syslimits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cstdlib:
|
|
||||||
|
|
||||||
/usr/include/stdlib.h:
|
|
||||||
|
|
||||||
/usr/include/available.h:
|
|
||||||
|
|
||||||
/usr/include/sys/wait.h:
|
|
||||||
|
|
||||||
/usr/include/sys/signal.h:
|
|
||||||
|
|
||||||
/usr/include/machine/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/signal.h:
|
|
||||||
|
|
||||||
/usr/include/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/machine/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/mach/i386/_structs.h:
|
|
||||||
|
|
||||||
/usr/include/sys/resource.h:
|
|
||||||
|
|
||||||
/usr/include/machine/endian.h:
|
|
||||||
|
|
||||||
/usr/include/i386/endian.h:
|
|
||||||
|
|
||||||
/usr/include/sys/_endian.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/libkern/i386/_OSByteOrder.h:
|
|
||||||
|
|
||||||
/usr/include/alloca.h:
|
|
||||||
|
|
||||||
/usr/include/machine/types.h:
|
|
||||||
|
|
||||||
/usr/include/i386/types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_pair.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/cpp_type_traits.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_types.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator_base_funcs.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/concept_check.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/debug/debug.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cassert:
|
|
||||||
|
|
||||||
/usr/include/assert.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/localefwd.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ios_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/atomicity.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/atomic_word.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_classes.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/string:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/memory:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/c++allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/ext/new_allocator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/new:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_construct.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_uninitialized.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_raw_storage_iter.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/limits:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_function.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/algorithm:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_algo.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_heap.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tempbuf.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_string.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/streambuf:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/streambuf_iterator.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/cwctype:
|
|
||||||
|
|
||||||
/usr/include/wctype.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_base.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/ctype_inline.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/codecvt.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/time_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/i686-apple-darwin9/bits/messages_members.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/basic_ios.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/ostream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/locale:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/locale_facets.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/typeinfo:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/istream:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/istream.tcc:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/vector:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_vector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_bvector.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/vector.tcc:
|
|
||||||
|
|
||||||
/usr/include/sys/types.h:
|
|
||||||
|
|
||||||
/usr/include/sys/time.h:
|
|
||||||
|
|
||||||
Table.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/map:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_tree.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_map.h:
|
|
||||||
|
|
||||||
/usr/include/c++/4.0.0/bits/stl_multimap.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
Grid.h:
|
|
||||||
|
|
||||||
task.h:
|
|
||||||
|
|
||||||
Config.h:
|
|
||||||
|
|
||||||
color.h:
|
|
||||||
|
|
||||||
TDB.h:
|
|
||||||
|
|
||||||
T.h:
|
|
||||||
|
|
||||||
../auto.h:
|
|
||||||
|
|
||||||
/usr/include/uuid/uuid.h:
|
|
||||||
200
src/Date.cpp
200
src/Date.cpp
@@ -63,6 +63,10 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */)
|
|||||||
int day = 0;
|
int day = 0;
|
||||||
int year = 0;
|
int year = 0;
|
||||||
|
|
||||||
|
// Before parsing according to "format", perhaps this is a relative date?
|
||||||
|
if (isRelativeDate (mdy))
|
||||||
|
return;
|
||||||
|
|
||||||
unsigned int i = 0; // Index into mdy.
|
unsigned int i = 0; // Index into mdy.
|
||||||
|
|
||||||
for (unsigned int f = 0; f < format.length (); ++f)
|
for (unsigned int f = 0; f < format.length (); ++f)
|
||||||
@@ -184,7 +188,7 @@ Date::Date (const std::string& mdy, const std::string& format /* = "m/d/Y" */)
|
|||||||
t.tm_mon = month - 1;
|
t.tm_mon = month - 1;
|
||||||
t.tm_year = year - 1900;
|
t.tm_year = year - 1900;
|
||||||
|
|
||||||
mT = mktime (&t);
|
mT = mktime (&t);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -357,6 +361,22 @@ int Date::dayOfWeek () const
|
|||||||
return t->tm_wday;
|
return t->tm_wday;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
int Date::dayOfWeek (const std::string& input)
|
||||||
|
{
|
||||||
|
std::string in = lowerCase (input);
|
||||||
|
|
||||||
|
if (in == "sunday") return 0;
|
||||||
|
if (in == "monday") return 1;
|
||||||
|
if (in == "tuesday") return 2;
|
||||||
|
if (in == "wednesday") return 3;
|
||||||
|
if (in == "thursday") return 4;
|
||||||
|
if (in == "friday") return 5;
|
||||||
|
if (in == "saturday") return 6;
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
int Date::month () const
|
int Date::month () const
|
||||||
{
|
{
|
||||||
@@ -414,6 +434,36 @@ bool Date::operator>= (const Date& rhs)
|
|||||||
return mT >= rhs.mT;
|
return mT >= rhs.mT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
bool Date::sameDay (const Date& rhs)
|
||||||
|
{
|
||||||
|
if (this->year () == rhs.year () &&
|
||||||
|
this->month () == rhs.month () &&
|
||||||
|
this->day () == rhs.day ())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
bool Date::sameMonth (const Date& rhs)
|
||||||
|
{
|
||||||
|
if (this->year () == rhs.year () &&
|
||||||
|
this->month () == rhs.month ())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
bool Date::sameYear (const Date& rhs)
|
||||||
|
{
|
||||||
|
if (this->year () == rhs.year ())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
Date Date::operator+ (const int delta)
|
Date Date::operator+ (const int delta)
|
||||||
{
|
{
|
||||||
@@ -441,3 +491,151 @@ time_t Date::operator- (const Date& rhs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// If the input string looks like a relative date, determine that date, set mT
|
||||||
|
// and return true.
|
||||||
|
//
|
||||||
|
// What is a relative date? All of the following should be recognizable, and
|
||||||
|
// converted to an absolute date:
|
||||||
|
// wednesday
|
||||||
|
// fri
|
||||||
|
// 23rd
|
||||||
|
// today
|
||||||
|
// tomorrow
|
||||||
|
// yesterday
|
||||||
|
// eow (end of week)
|
||||||
|
// eom (end of month)
|
||||||
|
// eoy (end of year)
|
||||||
|
bool Date::isRelativeDate (const std::string& input)
|
||||||
|
{
|
||||||
|
std::string in (lowerCase (input));
|
||||||
|
Date today;
|
||||||
|
|
||||||
|
std::vector <std::string> supported;
|
||||||
|
supported.push_back ("monday");
|
||||||
|
supported.push_back ("tuesday");
|
||||||
|
supported.push_back ("wednesday");
|
||||||
|
supported.push_back ("thursday");
|
||||||
|
supported.push_back ("friday");
|
||||||
|
supported.push_back ("saturday");
|
||||||
|
supported.push_back ("sunday");
|
||||||
|
supported.push_back ("today");
|
||||||
|
supported.push_back ("tomorrow");
|
||||||
|
supported.push_back ("yesterday");
|
||||||
|
supported.push_back ("eow");
|
||||||
|
supported.push_back ("eom");
|
||||||
|
supported.push_back ("eoy");
|
||||||
|
|
||||||
|
std::vector <std::string> matches;
|
||||||
|
if (autoComplete (in, supported, matches) == 1)
|
||||||
|
{
|
||||||
|
std::string found = matches[0];
|
||||||
|
|
||||||
|
// If day name.
|
||||||
|
int dow;
|
||||||
|
if ((dow = Date::dayOfWeek (found)) != -1 ||
|
||||||
|
found == "eow")
|
||||||
|
{
|
||||||
|
if (found == "eow")
|
||||||
|
dow = 5;
|
||||||
|
|
||||||
|
if (today.dayOfWeek () >= dow)
|
||||||
|
today += (dow - today.dayOfWeek () + 7) * 86400;
|
||||||
|
else
|
||||||
|
today += (dow - today.dayOfWeek ()) * 86400;
|
||||||
|
|
||||||
|
mT = today.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (found == "today")
|
||||||
|
{
|
||||||
|
mT = today.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (found == "tomorrow")
|
||||||
|
{
|
||||||
|
mT = today.mT + 86400;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (found == "yesterday")
|
||||||
|
{
|
||||||
|
mT = today.mT - 86400;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (found == "eom")
|
||||||
|
{
|
||||||
|
Date then (today.month (),
|
||||||
|
daysInMonth (today.month (), today.year ()),
|
||||||
|
today.year ());
|
||||||
|
mT = then.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else if (found == "eoy")
|
||||||
|
{
|
||||||
|
Date then (12, 31, today.year ());
|
||||||
|
mT = then.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Support "21st" to indicate the next date that is the 21st day.
|
||||||
|
else if (input.length () <= 4 &&
|
||||||
|
isdigit (input[0]))
|
||||||
|
{
|
||||||
|
int number;
|
||||||
|
std::string ordinal;
|
||||||
|
|
||||||
|
if (isdigit (input[1]))
|
||||||
|
{
|
||||||
|
number = ::atoi (input.substr (0, 2).c_str ());
|
||||||
|
ordinal = lowerCase (input.substr (2, std::string::npos));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
number = ::atoi (input.substr (0, 2).c_str ());
|
||||||
|
ordinal = lowerCase (input.substr (1, std::string::npos));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sanity check.
|
||||||
|
if (number <= 31)
|
||||||
|
{
|
||||||
|
if (ordinal == "st" ||
|
||||||
|
ordinal == "nd" ||
|
||||||
|
ordinal == "rd" ||
|
||||||
|
ordinal == "th")
|
||||||
|
{
|
||||||
|
int m = today.month ();
|
||||||
|
int d = today.day ();
|
||||||
|
int y = today.year ();
|
||||||
|
|
||||||
|
// If it is this month.
|
||||||
|
if (d < number &&
|
||||||
|
number <= Date::daysInMonth (m, y))
|
||||||
|
{
|
||||||
|
Date then (m, number, y);
|
||||||
|
mT = then.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
do
|
||||||
|
{
|
||||||
|
m++;
|
||||||
|
|
||||||
|
if (m > 12)
|
||||||
|
{
|
||||||
|
m = 1;
|
||||||
|
y++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
while (number > Date::daysInMonth (m, y));
|
||||||
|
|
||||||
|
Date then (m, number, y);
|
||||||
|
mT = then.mT;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
@@ -52,11 +52,12 @@ public:
|
|||||||
static std::string monthName (int);
|
static std::string monthName (int);
|
||||||
static void dayName (int, std::string&);
|
static void dayName (int, std::string&);
|
||||||
static std::string dayName (int);
|
static std::string dayName (int);
|
||||||
int dayOfWeek () const;
|
static int dayOfWeek (const std::string&);
|
||||||
|
|
||||||
int month () const;
|
int month () const;
|
||||||
int day () const;
|
int day () const;
|
||||||
int year () const;
|
int year () const;
|
||||||
|
int dayOfWeek () const;
|
||||||
|
|
||||||
bool operator== (const Date&);
|
bool operator== (const Date&);
|
||||||
bool operator!= (const Date&);
|
bool operator!= (const Date&);
|
||||||
@@ -64,6 +65,9 @@ public:
|
|||||||
bool operator> (const Date&);
|
bool operator> (const Date&);
|
||||||
bool operator<= (const Date&);
|
bool operator<= (const Date&);
|
||||||
bool operator>= (const Date&);
|
bool operator>= (const Date&);
|
||||||
|
bool sameDay (const Date&);
|
||||||
|
bool sameMonth (const Date&);
|
||||||
|
bool sameYear (const Date&);
|
||||||
|
|
||||||
Date operator+ (const int);
|
Date operator+ (const int);
|
||||||
Date& operator+= (const int);
|
Date& operator+= (const int);
|
||||||
@@ -71,6 +75,9 @@ public:
|
|||||||
|
|
||||||
time_t operator- (const Date&);
|
time_t operator- (const Date&);
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool isRelativeDate (const std::string&);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
time_t mT;
|
time_t mT;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
bin_PROGRAMS = task
|
bin_PROGRAMS = task
|
||||||
task_SOURCES = Config.cpp Date.cpp T.cpp TDB.cpp Table.cpp Grid.cpp color.cpp parse.cpp task.cpp util.cpp text.cpp rules.cpp Config.h Date.h T.h TDB.h Table.h Grid.h color.h task.h
|
task_SOURCES = Config.cpp Date.cpp T.cpp TDB.cpp Table.cpp Grid.cpp color.cpp parse.cpp task.cpp command.cpp report.cpp util.cpp text.cpp rules.cpp Config.h Date.h T.h TDB.h Table.h Grid.h color.h task.h
|
||||||
AM_CPPFLAGS = -Wall -pedantic -ggdb3 -fno-rtti
|
AM_CPPFLAGS = -Wall -pedantic -ggdb3 -fno-rtti
|
||||||
|
|||||||
@@ -45,8 +45,8 @@ binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
|
|||||||
PROGRAMS = $(bin_PROGRAMS)
|
PROGRAMS = $(bin_PROGRAMS)
|
||||||
am_task_OBJECTS = Config.$(OBJEXT) Date.$(OBJEXT) T.$(OBJEXT) \
|
am_task_OBJECTS = Config.$(OBJEXT) Date.$(OBJEXT) T.$(OBJEXT) \
|
||||||
TDB.$(OBJEXT) Table.$(OBJEXT) Grid.$(OBJEXT) color.$(OBJEXT) \
|
TDB.$(OBJEXT) Table.$(OBJEXT) Grid.$(OBJEXT) color.$(OBJEXT) \
|
||||||
parse.$(OBJEXT) task.$(OBJEXT) util.$(OBJEXT) text.$(OBJEXT) \
|
parse.$(OBJEXT) task.$(OBJEXT) command.$(OBJEXT) \
|
||||||
rules.$(OBJEXT)
|
report.$(OBJEXT) util.$(OBJEXT) text.$(OBJEXT) rules.$(OBJEXT)
|
||||||
task_OBJECTS = $(am_task_OBJECTS)
|
task_OBJECTS = $(am_task_OBJECTS)
|
||||||
task_LDADD = $(LDADD)
|
task_LDADD = $(LDADD)
|
||||||
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
|
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
|
||||||
@@ -154,7 +154,7 @@ sysconfdir = @sysconfdir@
|
|||||||
target_alias = @target_alias@
|
target_alias = @target_alias@
|
||||||
top_builddir = @top_builddir@
|
top_builddir = @top_builddir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
task_SOURCES = Config.cpp Date.cpp T.cpp TDB.cpp Table.cpp Grid.cpp color.cpp parse.cpp task.cpp util.cpp text.cpp rules.cpp Config.h Date.h T.h TDB.h Table.h Grid.h color.h task.h
|
task_SOURCES = Config.cpp Date.cpp T.cpp TDB.cpp Table.cpp Grid.cpp color.cpp parse.cpp task.cpp command.cpp report.cpp util.cpp text.cpp rules.cpp Config.h Date.h T.h TDB.h Table.h Grid.h color.h task.h
|
||||||
AM_CPPFLAGS = -Wall -pedantic -ggdb3 -fno-rtti
|
AM_CPPFLAGS = -Wall -pedantic -ggdb3 -fno-rtti
|
||||||
all: all-am
|
all: all-am
|
||||||
|
|
||||||
@@ -229,7 +229,9 @@ distclean-compile:
|
|||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TDB.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TDB.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Table.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Table.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/color.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/color.Po@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/command.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parse.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parse.Po@am__quote@
|
||||||
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/report.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rules.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rules.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/task.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/task.Po@am__quote@
|
||||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/text.Po@am__quote@
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/text.Po@am__quote@
|
||||||
|
|||||||
@@ -424,7 +424,8 @@ void T::parse (const std::string& line)
|
|||||||
|
|
||||||
mStatus = line[37] == '+' ? completed
|
mStatus = line[37] == '+' ? completed
|
||||||
: line[37] == 'X' ? deleted
|
: line[37] == 'X' ? deleted
|
||||||
: pending;
|
: line[37] == 'r' ? recurring
|
||||||
|
: pending;
|
||||||
|
|
||||||
size_t openTagBracket = line.find ("[");
|
size_t openTagBracket = line.find ("[");
|
||||||
size_t closeTagBracket = line.find ("]", openTagBracket);
|
size_t closeTagBracket = line.find ("]", openTagBracket);
|
||||||
@@ -449,7 +450,7 @@ void T::parse (const std::string& line)
|
|||||||
{
|
{
|
||||||
std::vector <std::string> pair;
|
std::vector <std::string> pair;
|
||||||
split (pair, pairs[i], ':');
|
split (pair, pairs[i], ':');
|
||||||
if (pair[1] != "")
|
if (pair.size () == 2)
|
||||||
mAttributes[pair[0]] = pair[1];
|
mAttributes[pair[0]] = pair[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
2
src/T.h
2
src/T.h
@@ -32,7 +32,7 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
// Length of longest line.
|
// Length of longest line.
|
||||||
#define T_LINE_MAX 8192
|
#define T_LINE_MAX 32768
|
||||||
|
|
||||||
class T
|
class T
|
||||||
{
|
{
|
||||||
|
|||||||
38
src/TDB.cpp
38
src/TDB.cpp
@@ -38,6 +38,7 @@ TDB::TDB ()
|
|||||||
: mPendingFile ("")
|
: mPendingFile ("")
|
||||||
, mCompletedFile ("")
|
, mCompletedFile ("")
|
||||||
, mLogFile ("")
|
, mLogFile ("")
|
||||||
|
, mId (1)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -67,7 +68,7 @@ void TDB::dataDirectory (const std::string& directory)
|
|||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// Combine allPendingT with allCompletedT.
|
// Combine allPendingT with allCompletedT.
|
||||||
// Note: this method is O(N1) + O(N2), where N2 is not bounded.
|
// Note: this method is O(N1) + O(N2), where N2 is not bounded.
|
||||||
bool TDB::allT (std::vector <T>& all) const
|
bool TDB::allT (std::vector <T>& all)
|
||||||
{
|
{
|
||||||
all.clear ();
|
all.clear ();
|
||||||
|
|
||||||
@@ -95,20 +96,20 @@ bool TDB::allT (std::vector <T>& all) const
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// Only accesses to the pending file result in Tasks that have assigned ids.
|
// Only accesses to the pending file result in Tasks that have assigned ids.
|
||||||
bool TDB::pendingT (std::vector <T>& all) const
|
bool TDB::pendingT (std::vector <T>& all)
|
||||||
{
|
{
|
||||||
all.clear ();
|
all.clear ();
|
||||||
|
|
||||||
std::vector <std::string> lines;
|
std::vector <std::string> lines;
|
||||||
if (readLockedFile (mPendingFile, lines))
|
if (readLockedFile (mPendingFile, lines))
|
||||||
{
|
{
|
||||||
int id = 1;
|
mId = 1;
|
||||||
|
|
||||||
std::vector <std::string>::iterator it;
|
std::vector <std::string>::iterator it;
|
||||||
for (it = lines.begin (); it != lines.end (); ++it)
|
for (it = lines.begin (); it != lines.end (); ++it)
|
||||||
{
|
{
|
||||||
T t (*it);
|
T t (*it);
|
||||||
t.setId (id++);
|
t.setId (mId++);
|
||||||
if (t.getStatus () == T::pending)
|
if (t.getStatus () == T::pending)
|
||||||
all.push_back (t);
|
all.push_back (t);
|
||||||
}
|
}
|
||||||
@@ -121,20 +122,20 @@ bool TDB::pendingT (std::vector <T>& all) const
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// Only accesses to the pending file result in Tasks that have assigned ids.
|
// Only accesses to the pending file result in Tasks that have assigned ids.
|
||||||
bool TDB::allPendingT (std::vector <T>& all) const
|
bool TDB::allPendingT (std::vector <T>& all)
|
||||||
{
|
{
|
||||||
all.clear ();
|
all.clear ();
|
||||||
|
|
||||||
std::vector <std::string> lines;
|
std::vector <std::string> lines;
|
||||||
if (readLockedFile (mPendingFile, lines))
|
if (readLockedFile (mPendingFile, lines))
|
||||||
{
|
{
|
||||||
int id = 1;
|
mId = 1;
|
||||||
|
|
||||||
std::vector <std::string>::iterator it;
|
std::vector <std::string>::iterator it;
|
||||||
for (it = lines.begin (); it != lines.end (); ++it)
|
for (it = lines.begin (); it != lines.end (); ++it)
|
||||||
{
|
{
|
||||||
T t (*it);
|
T t (*it);
|
||||||
t.setId (id++);
|
t.setId (mId++);
|
||||||
all.push_back (t);
|
all.push_back (t);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -188,7 +189,7 @@ bool TDB::allCompletedT (std::vector <T>& all) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool TDB::deleteT (const T& t) const
|
bool TDB::deleteT (const T& t)
|
||||||
{
|
{
|
||||||
T task (t);
|
T task (t);
|
||||||
|
|
||||||
@@ -212,7 +213,7 @@ bool TDB::deleteT (const T& t) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool TDB::completeT (const T& t) const
|
bool TDB::completeT (const T& t)
|
||||||
{
|
{
|
||||||
T task (t);
|
T task (t);
|
||||||
|
|
||||||
@@ -239,7 +240,6 @@ bool TDB::completeT (const T& t) const
|
|||||||
bool TDB::addT (const T& t) const
|
bool TDB::addT (const T& t) const
|
||||||
{
|
{
|
||||||
T task (t);
|
T task (t);
|
||||||
|
|
||||||
std::vector <std::string> tags;
|
std::vector <std::string> tags;
|
||||||
task.getTags (tags);
|
task.getTags (tags);
|
||||||
|
|
||||||
@@ -254,14 +254,15 @@ bool TDB::addT (const T& t) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (task.getStatus () == T::pending)
|
if (task.getStatus () == T::pending ||
|
||||||
|
task.getStatus () == T::recurring)
|
||||||
return writePending (task);
|
return writePending (task);
|
||||||
|
|
||||||
return writeCompleted (task);
|
return writeCompleted (task);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool TDB::modifyT (const T& t) const
|
bool TDB::modifyT (const T& t)
|
||||||
{
|
{
|
||||||
T modified (t);
|
T modified (t);
|
||||||
|
|
||||||
@@ -348,7 +349,7 @@ bool TDB::lock (FILE* file) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool TDB::overwritePending (std::vector <T>& all) const
|
bool TDB::overwritePending (std::vector <T>& all)
|
||||||
{
|
{
|
||||||
// Write a single task to the pending file
|
// Write a single task to the pending file
|
||||||
FILE* out;
|
FILE* out;
|
||||||
@@ -453,7 +454,7 @@ bool TDB::readLockedFile (
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
int TDB::gc () const
|
int TDB::gc ()
|
||||||
{
|
{
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
@@ -468,7 +469,8 @@ int TDB::gc () const
|
|||||||
for (it = all.begin (); it != all.end (); ++it)
|
for (it = all.begin (); it != all.end (); ++it)
|
||||||
{
|
{
|
||||||
// Some tasks stay in the pending file.
|
// Some tasks stay in the pending file.
|
||||||
if (it->getStatus () == T::pending)
|
if (it->getStatus () == T::pending ||
|
||||||
|
it->getStatus () == T::recurring)
|
||||||
pending.push_back (*it);
|
pending.push_back (*it);
|
||||||
|
|
||||||
// Others are transferred to the completed file.
|
// Others are transferred to the completed file.
|
||||||
@@ -485,4 +487,10 @@ int TDB::gc () const
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
int TDB::nextId ()
|
||||||
|
{
|
||||||
|
return mId++;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|||||||
18
src/TDB.h
18
src/TDB.h
@@ -38,22 +38,23 @@ public:
|
|||||||
~TDB ();
|
~TDB ();
|
||||||
|
|
||||||
void dataDirectory (const std::string&);
|
void dataDirectory (const std::string&);
|
||||||
bool allT (std::vector <T>&) const;
|
bool allT (std::vector <T>&);
|
||||||
bool pendingT (std::vector <T>&) const;
|
bool pendingT (std::vector <T>&);
|
||||||
bool allPendingT (std::vector <T>&) const;
|
bool allPendingT (std::vector <T>&);
|
||||||
bool completedT (std::vector <T>&) const;
|
bool completedT (std::vector <T>&) const;
|
||||||
bool allCompletedT (std::vector <T>&) const;
|
bool allCompletedT (std::vector <T>&) const;
|
||||||
bool deleteT (const T&) const;
|
bool deleteT (const T&);
|
||||||
bool completeT (const T&) const;
|
bool completeT (const T&);
|
||||||
bool addT (const T&) const;
|
bool addT (const T&) const;
|
||||||
bool modifyT (const T&) const;
|
bool modifyT (const T&);
|
||||||
bool logRead (std::vector <std::string>&) const;
|
bool logRead (std::vector <std::string>&) const;
|
||||||
bool logCommand (int, char**) const;
|
bool logCommand (int, char**) const;
|
||||||
int gc () const;
|
int gc ();
|
||||||
|
int nextId ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool lock (FILE*) const;
|
bool lock (FILE*) const;
|
||||||
bool overwritePending (std::vector <T>&) const;
|
bool overwritePending (std::vector <T>&);
|
||||||
bool writePending (const T&) const;
|
bool writePending (const T&) const;
|
||||||
bool writeCompleted (const T&) const;
|
bool writeCompleted (const T&) const;
|
||||||
bool readLockedFile (const std::string&, std::vector <std::string>&) const;
|
bool readLockedFile (const std::string&, std::vector <std::string>&) const;
|
||||||
@@ -62,6 +63,7 @@ private:
|
|||||||
std::string mPendingFile;
|
std::string mPendingFile;
|
||||||
std::string mCompletedFile;
|
std::string mCompletedFile;
|
||||||
std::string mLogFile;
|
std::string mLogFile;
|
||||||
|
int mId;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
608
src/command.cpp
Normal file
608
src/command.cpp
Normal file
@@ -0,0 +1,608 @@
|
|||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// task - a command line task list manager.
|
||||||
|
//
|
||||||
|
// Copyright 2006 - 2008, Paul Beckingham.
|
||||||
|
// All rights reserved.
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or modify it under
|
||||||
|
// the terms of the GNU General Public License as published by the Free Software
|
||||||
|
// Foundation; either version 2 of the License, or (at your option) any later
|
||||||
|
// version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
||||||
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
|
// details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License along with
|
||||||
|
// this program; if not, write to the
|
||||||
|
//
|
||||||
|
// Free Software Foundation, Inc.,
|
||||||
|
// 51 Franklin Street, Fifth Floor,
|
||||||
|
// Boston, MA
|
||||||
|
// 02110-1301
|
||||||
|
// USA
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
#include <iostream>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <fstream>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <pwd.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
|
#include "Config.h"
|
||||||
|
#include "Date.h"
|
||||||
|
#include "Table.h"
|
||||||
|
#include "TDB.h"
|
||||||
|
#include "T.h"
|
||||||
|
#include "task.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_LIBNCURSES
|
||||||
|
#include <ncurses.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleAdd (const TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
char entryTime[16];
|
||||||
|
sprintf (entryTime, "%u", (unsigned int) time (NULL));
|
||||||
|
task.setAttribute ("entry", entryTime);
|
||||||
|
|
||||||
|
std::map <std::string, std::string> atts;
|
||||||
|
task.getAttributes (atts);
|
||||||
|
foreach (i, atts)
|
||||||
|
if (i->second == "")
|
||||||
|
task.removeAttribute (i->first);
|
||||||
|
|
||||||
|
// Recurring tasks get a special status.
|
||||||
|
if (task.getAttribute ("due") != "" &&
|
||||||
|
task.getAttribute ("recur") != "")
|
||||||
|
{
|
||||||
|
task.setStatus (T::recurring);
|
||||||
|
task.setAttribute ("mask", "");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (task.getDescription () == "")
|
||||||
|
throw std::string ("Cannot add a blank task.");
|
||||||
|
|
||||||
|
if (!tdb.addT (task))
|
||||||
|
throw std::string ("Could not create new task.");
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleProjects (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
// Get all the tasks, including deleted ones.
|
||||||
|
std::vector <T> tasks;
|
||||||
|
tdb.pendingT (tasks);
|
||||||
|
|
||||||
|
// Scan all the tasks for their project name, building a map using project
|
||||||
|
// names as keys.
|
||||||
|
std::map <std::string, int> unique;
|
||||||
|
for (unsigned int i = 0; i < tasks.size (); ++i)
|
||||||
|
{
|
||||||
|
T task (tasks[i]);
|
||||||
|
unique[task.getAttribute ("project")] += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (unique.size ())
|
||||||
|
{
|
||||||
|
// Render a list of project names from the map.
|
||||||
|
Table table;
|
||||||
|
table.addColumn ("Project");
|
||||||
|
table.addColumn ("Tasks");
|
||||||
|
|
||||||
|
if (conf.get ("color", true))
|
||||||
|
{
|
||||||
|
table.setColumnUnderline (0);
|
||||||
|
table.setColumnUnderline (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
table.setColumnJustification (1, Table::right);
|
||||||
|
table.setDateFormat (conf.get ("dateformat", "m/d/Y"));
|
||||||
|
|
||||||
|
foreach (i, unique)
|
||||||
|
{
|
||||||
|
int row = table.addRow ();
|
||||||
|
table.addCell (row, 0, i->first);
|
||||||
|
table.addCell (row, 1, i->second);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << optionalBlankLine (conf)
|
||||||
|
<< table.render ()
|
||||||
|
<< optionalBlankLine (conf)
|
||||||
|
<< unique.size ()
|
||||||
|
<< (unique.size () == 1 ? " project" : " projects")
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
std::cout << "No projects."
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleTags (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
// Get all the tasks.
|
||||||
|
std::vector <T> tasks;
|
||||||
|
tdb.pendingT (tasks);
|
||||||
|
|
||||||
|
// Scan all the tasks for their project name, building a map using project
|
||||||
|
// names as keys.
|
||||||
|
std::map <std::string, std::string> unique;
|
||||||
|
for (unsigned int i = 0; i < tasks.size (); ++i)
|
||||||
|
{
|
||||||
|
T task (tasks[i]);
|
||||||
|
|
||||||
|
std::vector <std::string> tags;
|
||||||
|
task.getTags (tags);
|
||||||
|
|
||||||
|
for (unsigned int t = 0; t < tags.size (); ++t)
|
||||||
|
unique[tags[t]] = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Render a list of tag names from the map.
|
||||||
|
std::cout << optionalBlankLine (conf);
|
||||||
|
foreach (i, unique)
|
||||||
|
std::cout << i->first << std::endl;
|
||||||
|
|
||||||
|
if (unique.size ())
|
||||||
|
std::cout << optionalBlankLine (conf)
|
||||||
|
<< unique.size ()
|
||||||
|
<< (unique.size () == 1 ? " tag" : " tags")
|
||||||
|
<< std::endl;
|
||||||
|
else
|
||||||
|
std::cout << "No tags."
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// If a task is deleted, but is still in the pending file, then it may be
|
||||||
|
// undeleted simply by changing it's status.
|
||||||
|
void handleUndelete (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.allPendingT (all);
|
||||||
|
|
||||||
|
int id = task.getId ();
|
||||||
|
std::vector <T>::iterator it;
|
||||||
|
for (it = all.begin (); it != all.end (); ++it)
|
||||||
|
{
|
||||||
|
if (it->getId () == id)
|
||||||
|
{
|
||||||
|
if (it->getStatus () == T::deleted)
|
||||||
|
{
|
||||||
|
if (it->getAttribute ("recur") != "")
|
||||||
|
{
|
||||||
|
std::cout << "Task does not support 'undelete' for recurring tasks." << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
T restored (*it);
|
||||||
|
restored.setStatus (T::pending);
|
||||||
|
restored.removeAttribute ("end");
|
||||||
|
tdb.modifyT (restored);
|
||||||
|
|
||||||
|
std::cout << "Task " << id << " successfully undeleted." << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::cout << "Task " << id << " is not deleted - therefore cannot undelete." << std::endl;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "Task " << id
|
||||||
|
<< " not found - tasks can only be reliably undeleted if the undelete" << std::endl
|
||||||
|
<< "command is run immediately after the errant delete command." << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleVersion (Config& conf)
|
||||||
|
{
|
||||||
|
// Determine window size, and set table accordingly.
|
||||||
|
int width = conf.get ("defaultwidth", 80);
|
||||||
|
#ifdef HAVE_LIBNCURSES
|
||||||
|
if (conf.get ("curses", true))
|
||||||
|
{
|
||||||
|
WINDOW* w = initscr ();
|
||||||
|
width = w->_maxx + 1;
|
||||||
|
endwin ();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Create a table for output.
|
||||||
|
Table table;
|
||||||
|
table.setTableWidth (width);
|
||||||
|
table.setDateFormat (conf.get ("dateformat", "m/d/Y"));
|
||||||
|
table.addColumn ("Config variable");
|
||||||
|
table.addColumn ("Value");
|
||||||
|
|
||||||
|
if (conf.get ("color", true))
|
||||||
|
{
|
||||||
|
table.setColumnUnderline (0);
|
||||||
|
table.setColumnUnderline (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
table.setColumnWidth (0, Table::minimum);
|
||||||
|
table.setColumnWidth (1, Table::flexible);
|
||||||
|
table.setColumnJustification (0, Table::left);
|
||||||
|
table.setColumnJustification (1, Table::left);
|
||||||
|
table.sortOn (0, Table::ascendingCharacter);
|
||||||
|
|
||||||
|
std::vector <std::string> all;
|
||||||
|
conf.all (all);
|
||||||
|
foreach (i, all)
|
||||||
|
{
|
||||||
|
std::string value = conf.get (*i);
|
||||||
|
if (value != "")
|
||||||
|
{
|
||||||
|
int row = table.addRow ();
|
||||||
|
table.addCell (row, 0, *i);
|
||||||
|
table.addCell (row, 1, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "Copyright (C) 2006 - 2008, P. Beckingham."
|
||||||
|
<< std::endl
|
||||||
|
<< PACKAGE
|
||||||
|
<< " "
|
||||||
|
<< VERSION
|
||||||
|
<< std::endl
|
||||||
|
<< std::endl
|
||||||
|
<< "Task comes with ABSOLUTELY NO WARRANTY; for details read the COPYING file"
|
||||||
|
<< std::endl
|
||||||
|
<< "included. This is free software, and you are welcome to redistribute it"
|
||||||
|
<< std::endl
|
||||||
|
<< "under certain conditions; again, see the COPYING file for details."
|
||||||
|
<< std::endl
|
||||||
|
<< std::endl
|
||||||
|
<< table.render ()
|
||||||
|
<< std::endl;
|
||||||
|
|
||||||
|
// Verify installation. This is mentioned in the documentation as the way to
|
||||||
|
// ensure everything is properly installed.
|
||||||
|
|
||||||
|
if (all.size () == 0)
|
||||||
|
std::cout << "Configuration error: .taskrc contains no entries"
|
||||||
|
<< std::endl;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (conf.get ("data.location") == "")
|
||||||
|
std::cout << "Configuration error: data.location not specified in .taskrc "
|
||||||
|
"file."
|
||||||
|
<< std::endl;
|
||||||
|
|
||||||
|
if (access (conf.get ("data.location").c_str (), X_OK))
|
||||||
|
std::cout << "Configuration error: data.location contains a directory name"
|
||||||
|
" that doesn't exist, or is unreadable."
|
||||||
|
<< std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleDelete (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
if (conf.get ("confirmation") != "yes" || confirm ("Permanently delete task?"))
|
||||||
|
{
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.allPendingT (all);
|
||||||
|
foreach (t, all)
|
||||||
|
{
|
||||||
|
if (t->getId () == task.getId ())
|
||||||
|
{
|
||||||
|
// Check for the more complex case of a recurring task. If this is a
|
||||||
|
// recurring task, get confirmation to delete them all.
|
||||||
|
std::string parent = t->getAttribute ("parent");
|
||||||
|
if (parent != "")
|
||||||
|
{
|
||||||
|
if (confirm ("This is a recurring task. Do you want to delete all pending recurrences of this same task?"))
|
||||||
|
{
|
||||||
|
// Scan all pending tasks for siblings of this task, and the parent
|
||||||
|
// itself, and delete them.
|
||||||
|
foreach (sibling, all)
|
||||||
|
if (sibling->getAttribute ("parent") == parent ||
|
||||||
|
sibling->getUUID () == parent)
|
||||||
|
tdb.deleteT (*sibling);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Update mask in parent.
|
||||||
|
t->setStatus (T::deleted);
|
||||||
|
updateRecurrenceMask (tdb, all, *t);
|
||||||
|
tdb.deleteT (*t);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
tdb.deleteT (*t);
|
||||||
|
|
||||||
|
break; // No point continuing the loop.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
std::cout << "Task not deleted." << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleStart (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.pendingT (all);
|
||||||
|
|
||||||
|
std::vector <T>::iterator it;
|
||||||
|
for (it = all.begin (); it != all.end (); ++it)
|
||||||
|
{
|
||||||
|
if (it->getId () == task.getId ())
|
||||||
|
{
|
||||||
|
T original (*it);
|
||||||
|
|
||||||
|
if (original.getAttribute ("start") == "")
|
||||||
|
{
|
||||||
|
char startTime[16];
|
||||||
|
sprintf (startTime, "%u", (unsigned int) time (NULL));
|
||||||
|
original.setAttribute ("start", startTime);
|
||||||
|
|
||||||
|
original.setId (task.getId ());
|
||||||
|
tdb.modifyT (original);
|
||||||
|
|
||||||
|
nag (tdb, task, conf);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
std::cout << "Task " << task.getId () << " already started." << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw std::string ("Task not found.");
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleDone (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
if (!tdb.completeT (task))
|
||||||
|
throw std::string ("Could not mark task as completed.");
|
||||||
|
|
||||||
|
// Now update mask in parent.
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.allPendingT (all);
|
||||||
|
foreach (t, all)
|
||||||
|
{
|
||||||
|
if (t->getId () == task.getId ())
|
||||||
|
{
|
||||||
|
t->setStatus (T::completed);
|
||||||
|
updateRecurrenceMask (tdb, all, *t);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nag (tdb, task, conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleExport (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
// Use the description as a file name, then clobber the description so the
|
||||||
|
// file name isn't used for filtering.
|
||||||
|
std::string file = trim (task.getDescription ());
|
||||||
|
task.setDescription ("");
|
||||||
|
|
||||||
|
if (file.length () > 0)
|
||||||
|
{
|
||||||
|
std::ofstream out (file.c_str ());
|
||||||
|
if (out.good ())
|
||||||
|
{
|
||||||
|
out << "'id',"
|
||||||
|
<< "'status',"
|
||||||
|
<< "'tags',"
|
||||||
|
<< "'entry',"
|
||||||
|
<< "'start',"
|
||||||
|
<< "'due',"
|
||||||
|
<< "'end',"
|
||||||
|
<< "'project',"
|
||||||
|
<< "'priority',"
|
||||||
|
<< "'fg',"
|
||||||
|
<< "'bg',"
|
||||||
|
<< "'description'"
|
||||||
|
<< "\n";
|
||||||
|
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.allT (all);
|
||||||
|
filter (all, task);
|
||||||
|
foreach (t, all)
|
||||||
|
{
|
||||||
|
out << t->composeCSV ().c_str ();
|
||||||
|
}
|
||||||
|
out.close ();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
throw std::string ("Could not write to export file.");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
throw std::string ("You must specify a file to write to.");
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleModify (TDB& tdb, T& task, Config& conf)
|
||||||
|
{
|
||||||
|
std::vector <T> all;
|
||||||
|
tdb.pendingT (all);
|
||||||
|
|
||||||
|
std::vector <T>::iterator it;
|
||||||
|
for (it = all.begin (); it != all.end (); ++it)
|
||||||
|
{
|
||||||
|
if (it->getId () == task.getId ())
|
||||||
|
{
|
||||||
|
T original (*it);
|
||||||
|
|
||||||
|
// A non-zero value forces a file write.
|
||||||
|
int changes = 0;
|
||||||
|
|
||||||
|
// Apply a new description, if any.
|
||||||
|
if (task.getDescription () != "")
|
||||||
|
{
|
||||||
|
original.setDescription (task.getDescription ());
|
||||||
|
++changes;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Apply or remove tags, if any.
|
||||||
|
std::vector <std::string> tags;
|
||||||
|
task.getTags (tags);
|
||||||
|
for (unsigned int i = 0; i < tags.size (); ++i)
|
||||||
|
{
|
||||||
|
if (tags[i][0] == '+')
|
||||||
|
original.addTag (tags[i].substr (1, std::string::npos));
|
||||||
|
else
|
||||||
|
original.addTag (tags[i]);
|
||||||
|
|
||||||
|
++changes;
|
||||||
|
}
|
||||||
|
|
||||||
|
task.getRemoveTags (tags);
|
||||||
|
for (unsigned int i = 0; i < tags.size (); ++i)
|
||||||
|
{
|
||||||
|
if (tags[i][0] == '-')
|
||||||
|
original.removeTag (tags[i].substr (1, std::string::npos));
|
||||||
|
else
|
||||||
|
original.removeTag (tags[i]);
|
||||||
|
|
||||||
|
++changes;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Apply or remove attributes, if any.
|
||||||
|
std::map <std::string, std::string> attributes;
|
||||||
|
task.getAttributes (attributes);
|
||||||
|
foreach (i, attributes)
|
||||||
|
{
|
||||||
|
if (i->second == "")
|
||||||
|
original.removeAttribute (i->first);
|
||||||
|
else
|
||||||
|
original.setAttribute (i->first, i->second);
|
||||||
|
|
||||||
|
++changes;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string from;
|
||||||
|
std::string to;
|
||||||
|
task.getSubstitution (from, to);
|
||||||
|
if (from != "")
|
||||||
|
{
|
||||||
|
std::string description = original.getDescription ();
|
||||||
|
size_t pattern = description.find (from);
|
||||||
|
if (pattern != std::string::npos)
|
||||||
|
{
|
||||||
|
description = description.substr (0, pattern) +
|
||||||
|
to +
|
||||||
|
description.substr (pattern + from.length (), std::string::npos);
|
||||||
|
original.setDescription (description);
|
||||||
|
++changes;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (changes)
|
||||||
|
{
|
||||||
|
original.setId (task.getId ());
|
||||||
|
tdb.modifyT (original);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw std::string ("Task not found.");
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
void handleColor (Config& conf)
|
||||||
|
{
|
||||||
|
if (conf.get ("color", true))
|
||||||
|
{
|
||||||
|
std::cout << optionalBlankLine (conf) << "Foreground" << std::endl
|
||||||
|
<< " "
|
||||||
|
<< Text::colorize (Text::bold, Text::nocolor, "bold") << " "
|
||||||
|
<< Text::colorize (Text::underline, Text::nocolor, "underline") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline, Text::nocolor, "bold_underline") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::black, Text::nocolor, "black") << " "
|
||||||
|
<< Text::colorize (Text::bold_black, Text::nocolor, "bold_black") << " "
|
||||||
|
<< Text::colorize (Text::underline_black, Text::nocolor, "underline_black") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_black, Text::nocolor, "bold_underline_black") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::red, Text::nocolor, "red") << " "
|
||||||
|
<< Text::colorize (Text::bold_red, Text::nocolor, "bold_red") << " "
|
||||||
|
<< Text::colorize (Text::underline_red, Text::nocolor, "underline_red") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_red, Text::nocolor, "bold_underline_red") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::green, Text::nocolor, "green") << " "
|
||||||
|
<< Text::colorize (Text::bold_green, Text::nocolor, "bold_green") << " "
|
||||||
|
<< Text::colorize (Text::underline_green, Text::nocolor, "underline_green") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_green, Text::nocolor, "bold_underline_green") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::yellow, Text::nocolor, "yellow") << " "
|
||||||
|
<< Text::colorize (Text::bold_yellow, Text::nocolor, "bold_yellow") << " "
|
||||||
|
<< Text::colorize (Text::underline_yellow, Text::nocolor, "underline_yellow") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_yellow, Text::nocolor, "bold_underline_yellow") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::blue, Text::nocolor, "blue") << " "
|
||||||
|
<< Text::colorize (Text::bold_blue, Text::nocolor, "bold_blue") << " "
|
||||||
|
<< Text::colorize (Text::underline_blue, Text::nocolor, "underline_blue") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_blue, Text::nocolor, "bold_underline_blue") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::magenta, Text::nocolor, "magenta") << " "
|
||||||
|
<< Text::colorize (Text::bold_magenta, Text::nocolor, "bold_magenta") << " "
|
||||||
|
<< Text::colorize (Text::underline_magenta, Text::nocolor, "underline_magenta") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_magenta, Text::nocolor, "bold_underline_magenta") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::cyan, Text::nocolor, "cyan") << " "
|
||||||
|
<< Text::colorize (Text::bold_cyan, Text::nocolor, "bold_cyan") << " "
|
||||||
|
<< Text::colorize (Text::underline_cyan, Text::nocolor, "underline_cyan") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_cyan, Text::nocolor, "bold_underline_cyan") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::white, Text::nocolor, "white") << " "
|
||||||
|
<< Text::colorize (Text::bold_white, Text::nocolor, "bold_white") << " "
|
||||||
|
<< Text::colorize (Text::underline_white, Text::nocolor, "underline_white") << " "
|
||||||
|
<< Text::colorize (Text::bold_underline_white, Text::nocolor, "bold_underline_white") << std::endl
|
||||||
|
|
||||||
|
<< std::endl << "Background" << std::endl
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_black, "on_black") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_black, "on_bright_black") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_red, "on_red") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_red, "on_bright_red") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_green, "on_green") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_green, "on_bright_green") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_yellow, "on_yellow") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_yellow, "on_bright_yellow") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_blue, "on_blue") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_blue, "on_bright_blue") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_magenta, "on_magenta") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_magenta, "on_bright_magenta") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_cyan, "on_cyan") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_cyan, "on_bright_cyan") << std::endl
|
||||||
|
|
||||||
|
<< " " << Text::colorize (Text::nocolor, Text::on_white, "on_white") << " "
|
||||||
|
<< Text::colorize (Text::nocolor, Text::on_bright_white, "on_bright_white") << std::endl
|
||||||
|
|
||||||
|
<< optionalBlankLine (conf);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::cout << "Color is currently turned off in your .taskrc file." << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -109,8 +109,7 @@ static const char* attributes[] =
|
|||||||
"end",
|
"end",
|
||||||
"recur",
|
"recur",
|
||||||
"until",
|
"until",
|
||||||
"base",
|
"mask",
|
||||||
"range",
|
|
||||||
"",
|
"",
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -233,19 +232,22 @@ static bool validAttribute (
|
|||||||
else if (name == "due" && value != "")
|
else if (name == "due" && value != "")
|
||||||
validDate (value, conf);
|
validDate (value, conf);
|
||||||
|
|
||||||
|
else if (name == "until" && value != "")
|
||||||
|
validDate (value, conf);
|
||||||
|
|
||||||
else if (name == "priority")
|
else if (name == "priority")
|
||||||
{
|
{
|
||||||
for (std::string::iterator i = value.begin (); i != value.end (); ++i)
|
value = upperCase (value);
|
||||||
*i = ::toupper (*i);
|
|
||||||
|
|
||||||
return validPriority (value);
|
return validPriority (value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Some attributes are intended to be private.
|
||||||
else if (name == "entry" ||
|
else if (name == "entry" ||
|
||||||
name == "start" ||
|
name == "start" ||
|
||||||
name == "end")
|
name == "end" ||
|
||||||
|
name == "mask")
|
||||||
throw std::string ("\"") +
|
throw std::string ("\"") +
|
||||||
name +
|
name +
|
||||||
"\" is not an attribute you may modify directly.";
|
"\" is not an attribute you may modify directly.";
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@@ -319,10 +321,9 @@ static bool validSubstitution (
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool validDuration (const std::string& input)
|
bool validDuration (std::string& input)
|
||||||
{
|
{
|
||||||
// TODO
|
return (convertDuration (input) != 0) ? true : false;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -379,7 +380,8 @@ void parse (
|
|||||||
std::string value = arg.substr (colon + 1, std::string::npos);
|
std::string value = arg.substr (colon + 1, std::string::npos);
|
||||||
|
|
||||||
if (validAttribute (name, value, conf))
|
if (validAttribute (name, value, conf))
|
||||||
task.setAttribute (name, value);
|
if (name != "recur" || validDuration (value))
|
||||||
|
task.setAttribute (name, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Substitution of description text.
|
// Substitution of description text.
|
||||||
@@ -403,6 +405,14 @@ void parse (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (task.getAttribute ("recur") != "" &&
|
||||||
|
task.getAttribute ("due") == "")
|
||||||
|
throw std::string ("You cannot specify a recurring task without a due date.");
|
||||||
|
|
||||||
|
if (task.getAttribute ("until") != "" &&
|
||||||
|
task.getAttribute ("recur") == "")
|
||||||
|
throw std::string ("You cannot specify an until date for a non-recurring task.");
|
||||||
|
|
||||||
if (validDescription (descCandidate))
|
if (validDescription (descCandidate))
|
||||||
task.setDescription (descCandidate);
|
task.setDescription (descCandidate);
|
||||||
}
|
}
|
||||||
|
|||||||
2638
src/report.cpp
Normal file
2638
src/report.cpp
Normal file
File diff suppressed because it is too large
Load Diff
@@ -83,7 +83,7 @@ void initializeColorRules (Config& conf)
|
|||||||
void autoColorize (T& task, Text::color& fg, Text::color& bg)
|
void autoColorize (T& task, Text::color& fg, Text::color& bg)
|
||||||
{
|
{
|
||||||
// Note: fg, bg already contain colors specifically assigned via command.
|
// Note: fg, bg already contain colors specifically assigned via command.
|
||||||
// TODO These rules form a hierarchy - the last rule is king.
|
// Note: These rules form a hierarchy - the last rule is king.
|
||||||
|
|
||||||
// Colorization of the tagged.
|
// Colorization of the tagged.
|
||||||
if (gsFg["color.tagged"] != Text::nocolor ||
|
if (gsFg["color.tagged"] != Text::nocolor ||
|
||||||
|
|||||||
3323
src/task.cpp
3323
src/task.cpp
File diff suppressed because it is too large
Load Diff
69
src/task.h
69
src/task.h
@@ -31,6 +31,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include "Config.h"
|
#include "Config.h"
|
||||||
#include "Table.h"
|
#include "Table.h"
|
||||||
|
#include "Date.h"
|
||||||
#include "color.h"
|
#include "color.h"
|
||||||
#include "TDB.h"
|
#include "TDB.h"
|
||||||
#include "T.h"
|
#include "T.h"
|
||||||
@@ -57,35 +58,45 @@ void parse (std::vector <std::string>&, std::string&, T&, Config&);
|
|||||||
bool validDate (std::string&, Config&);
|
bool validDate (std::string&, Config&);
|
||||||
|
|
||||||
// task.cpp
|
// task.cpp
|
||||||
void handleAdd (const TDB&, T&, Config&);
|
|
||||||
void handleProjects (const TDB&, T&, Config&);
|
|
||||||
void handleTags (const TDB&, T&, Config&);
|
|
||||||
void handleList (const TDB&, T&, Config&);
|
|
||||||
void handleInfo (const TDB&, T&, Config&);
|
|
||||||
void handleUndelete (const TDB&, T&, Config&);
|
|
||||||
void handleLongList (const TDB&, T&, Config&);
|
|
||||||
void handleSmallList (const TDB&, T&, Config&);
|
|
||||||
void handleCompleted (const TDB&, T&, Config&);
|
|
||||||
void handleReportSummary (const TDB&, T&, Config&);
|
|
||||||
void handleReportNext (const TDB&, T&, Config&);
|
|
||||||
void handleReportHistory (const TDB&, T&, Config&);
|
|
||||||
void handleReportGHistory (const TDB&, T&, Config&);
|
|
||||||
void handleReportUsage (const TDB&, T&, Config&);
|
|
||||||
void handleReportCalendar (const TDB&, T&, Config&);
|
|
||||||
void handleReportActive (const TDB&, T&, Config&);
|
|
||||||
void handleReportOverdue (const TDB&, T&, Config&);
|
|
||||||
void handleReportStats (const TDB&, T&, Config&);
|
|
||||||
void handleReportOldest (const TDB&, T&, Config&);
|
|
||||||
void handleReportNewest (const TDB&, T&, Config&);
|
|
||||||
void handleVersion (Config&);
|
|
||||||
void handleExport (const TDB&, T&, Config&);
|
|
||||||
void handleDelete (const TDB&, T&, Config&);
|
|
||||||
void handleStart (const TDB&, T&, Config&);
|
|
||||||
void handleDone (const TDB&, T&, Config&);
|
|
||||||
void handleModify (const TDB&, T&, Config&);
|
|
||||||
void handleColor (Config&);
|
|
||||||
void gatherNextTasks (const TDB&, T&, Config&, std::vector <T>&, std::vector <int>&);
|
void gatherNextTasks (const TDB&, T&, Config&, std::vector <T>&, std::vector <int>&);
|
||||||
void nag (const TDB&, T&, Config&);
|
void nag (TDB&, T&, Config&);
|
||||||
|
int getDueState (const std::string&);
|
||||||
|
void handleRecurrence (TDB&, std::vector <T>&);
|
||||||
|
void generateDueDates (T&, std::vector <Date>&);
|
||||||
|
Date getNextRecurrence (Date&, std::string&);
|
||||||
|
void updateRecurrenceMask (TDB&, std::vector <T>&, T&);
|
||||||
|
|
||||||
|
// command.cpp
|
||||||
|
void handleAdd (const TDB&, T&, Config&);
|
||||||
|
void handleProjects (TDB&, T&, Config&);
|
||||||
|
void handleTags (TDB&, T&, Config&);
|
||||||
|
void handleUndelete (TDB&, T&, Config&);
|
||||||
|
void handleVersion (Config&);
|
||||||
|
void handleExport (TDB&, T&, Config&);
|
||||||
|
void handleDelete (TDB&, T&, Config&);
|
||||||
|
void handleStart (TDB&, T&, Config&);
|
||||||
|
void handleDone (TDB&, T&, Config&);
|
||||||
|
void handleModify (TDB&, T&, Config&);
|
||||||
|
void handleColor (Config&);
|
||||||
|
|
||||||
|
// report.cpp
|
||||||
|
void filter (std::vector<T>&, T&);
|
||||||
|
void handleList (TDB&, T&, Config&);
|
||||||
|
void handleInfo (TDB&, T&, Config&);
|
||||||
|
void handleLongList (TDB&, T&, Config&);
|
||||||
|
void handleSmallList (TDB&, T&, Config&);
|
||||||
|
void handleCompleted (TDB&, T&, Config&);
|
||||||
|
void handleReportSummary (TDB&, T&, Config&);
|
||||||
|
void handleReportNext (TDB&, T&, Config&);
|
||||||
|
void handleReportHistory (TDB&, T&, Config&);
|
||||||
|
void handleReportGHistory (TDB&, T&, Config&);
|
||||||
|
void handleReportUsage (const TDB&, T&, Config&);
|
||||||
|
void handleReportCalendar (TDB&, T&, Config&);
|
||||||
|
void handleReportActive (TDB&, T&, Config&);
|
||||||
|
void handleReportOverdue (TDB&, T&, Config&);
|
||||||
|
void handleReportStats (TDB&, T&, Config&);
|
||||||
|
void handleReportOldest (TDB&, T&, Config&);
|
||||||
|
void handleReportNewest (TDB&, T&, Config&);
|
||||||
|
|
||||||
// util.cpp
|
// util.cpp
|
||||||
bool confirm (const std::string&);
|
bool confirm (const std::string&);
|
||||||
@@ -100,12 +111,14 @@ void split (std::vector<std::string>&, const std::string&, const std::string&);
|
|||||||
void join (std::string&, const std::string&, const std::vector<std::string>&);
|
void join (std::string&, const std::string&, const std::vector<std::string>&);
|
||||||
std::string commify (const std::string&);
|
std::string commify (const std::string&);
|
||||||
std::string lowerCase (const std::string&);
|
std::string lowerCase (const std::string&);
|
||||||
|
std::string upperCase (const std::string&);
|
||||||
void delay (float);
|
void delay (float);
|
||||||
int autoComplete (const std::string&, const std::vector<std::string>&, std::vector<std::string>&);
|
int autoComplete (const std::string&, const std::vector<std::string>&, std::vector<std::string>&);
|
||||||
void formatTimeDeltaDays (std::string&, time_t);
|
void formatTimeDeltaDays (std::string&, time_t);
|
||||||
std::string formatSeconds (time_t);
|
std::string formatSeconds (time_t);
|
||||||
const std::string uuid ();
|
const std::string uuid ();
|
||||||
const char* optionalBlankLine (Config&);
|
const char* optionalBlankLine (Config&);
|
||||||
|
int convertDuration (std::string&);
|
||||||
|
|
||||||
// rules.cpp
|
// rules.cpp
|
||||||
void initializeColorRules (Config&);
|
void initializeColorRules (Config&);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
PROJECT = t.t tdb.t date.t
|
PROJECT = t.t tdb.t date.t duration.t
|
||||||
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
|
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
|
||||||
LFLAGS = -L/usr/local/lib
|
LFLAGS = -L/usr/local/lib
|
||||||
OBJECTS = ../TDB.o ../T.o ../parse.o ../text.o ../Date.o ../util.o ../Config.o
|
OBJECTS = ../TDB.o ../T.o ../parse.o ../text.o ../Date.o ../util.o ../Config.o
|
||||||
@@ -26,3 +26,6 @@ tdb.t: tdb.t.o $(OBJECTS) test.o
|
|||||||
date.t: date.t.o $(OBJECTS) test.o
|
date.t: date.t.o $(OBJECTS) test.o
|
||||||
g++ date.t.o $(OBJECTS) test.o $(LFLAGS) -o date.t
|
g++ date.t.o $(OBJECTS) test.o $(LFLAGS) -o date.t
|
||||||
|
|
||||||
|
duration.t: duration.t.o $(OBJECTS) test.o
|
||||||
|
g++ duration.t.o $(OBJECTS) test.o $(LFLAGS) -o duration.t
|
||||||
|
|
||||||
|
|||||||
@@ -9,104 +9,212 @@
|
|||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
int main (int argc, char** argv)
|
int main (int argc, char** argv)
|
||||||
{
|
{
|
||||||
plan (63);
|
plan (97);
|
||||||
|
|
||||||
Date now;
|
try
|
||||||
Date yesterday;
|
{
|
||||||
yesterday -= 1;
|
Date now;
|
||||||
|
Date yesterday;
|
||||||
|
yesterday -= 1;
|
||||||
|
|
||||||
ok (yesterday <= now, "yesterday <= now");
|
ok (yesterday <= now, "yesterday <= now");
|
||||||
ok (yesterday < now, "yesterday < now");
|
ok (yesterday < now, "yesterday < now");
|
||||||
notok (yesterday == now, "!(yesterday == now)");
|
notok (yesterday == now, "!(yesterday == now)");
|
||||||
ok (yesterday != now, "yesterday != now");
|
ok (yesterday != now, "yesterday != now");
|
||||||
ok (now >= yesterday, "now >= yesterday");
|
ok (now >= yesterday, "now >= yesterday");
|
||||||
ok (now > yesterday, "now > yesterday");
|
ok (now > yesterday, "now > yesterday");
|
||||||
|
|
||||||
ok (Date::valid (2, 29, 2008), "valid: 2/29/2008");
|
// Loose comparisons.
|
||||||
notok (Date::valid (2, 29, 2007), "invalid: 2/29/2007");
|
Date left ("7/4/2008");
|
||||||
|
Date comp1 ("7/4/2008");
|
||||||
|
ok (left.sameDay (comp1), "7/4/2008 is on the same day as 7/4/2008");
|
||||||
|
ok (left.sameMonth (comp1), "7/4/2008 is in the same month as 7/4/2008");
|
||||||
|
ok (left.sameYear (comp1), "7/4/2008 is in the same year as 7/4/2008");
|
||||||
|
|
||||||
ok (Date::leapYear (2008), "2008 is a leap year");
|
Date comp2 ("7/5/2008");
|
||||||
notok (Date::leapYear (2007), "2007 is not a leap year");
|
notok (left.sameDay (comp2), "7/4/2008 is not on the same day as 7/5/2008");
|
||||||
ok (Date::leapYear (2000), "2000 is a leap year");
|
ok (left.sameMonth (comp2), "7/4/2008 is in the same month as 7/5/2008");
|
||||||
ok (Date::leapYear (1900), "1900 is a leap year");
|
ok (left.sameYear (comp2), "7/4/2008 is in the same year as 7/5/2008");
|
||||||
|
|
||||||
is (Date::daysInMonth (2, 2008), 29, "29 days in February 2008");
|
Date comp3 ("8/4/2008");
|
||||||
is (Date::daysInMonth (2, 2007), 28, "28 days in February 2007");
|
notok (left.sameDay (comp3), "7/4/2008 is not on the same day as 8/4/2008");
|
||||||
|
notok (left.sameMonth (comp3), "7/4/2008 is not in the same month as 8/4/2008");
|
||||||
|
ok (left.sameYear (comp3), "7/4/2008 is in the same year as 8/4/2008");
|
||||||
|
|
||||||
is (Date::monthName (1), "January", "1 = January");
|
Date comp4 ("7/4/2009");
|
||||||
is (Date::monthName (2), "February", "2 = February");
|
notok (left.sameDay (comp4), "7/4/2008 is not on the same day as 7/4/2009");
|
||||||
is (Date::monthName (3), "March", "3 = March");
|
notok (left.sameMonth (comp4), "7/4/2008 is not in the same month as 7/4/2009");
|
||||||
is (Date::monthName (4), "April", "4 = April");
|
notok (left.sameYear (comp4), "7/4/2008 is not in the same year as 7/4/2009");
|
||||||
is (Date::monthName (5), "May", "5 = May");
|
|
||||||
is (Date::monthName (6), "June", "6 = June");
|
|
||||||
is (Date::monthName (7), "July", "7 = July");
|
|
||||||
is (Date::monthName (8), "August", "8 = August");
|
|
||||||
is (Date::monthName (9), "September", "9 = September");
|
|
||||||
is (Date::monthName (10), "October", "10 = October");
|
|
||||||
is (Date::monthName (11), "November", "11 = November");
|
|
||||||
is (Date::monthName (12), "December", "12 = December");
|
|
||||||
|
|
||||||
is (Date::dayName (0), "Sunday", "0 == Sunday");
|
// Validity.
|
||||||
is (Date::dayName (1), "Monday", "1 == Monday");
|
ok (Date::valid (2, 29, 2008), "valid: 2/29/2008");
|
||||||
is (Date::dayName (2), "Tuesday", "2 == Tuesday");
|
notok (Date::valid (2, 29, 2007), "invalid: 2/29/2007");
|
||||||
is (Date::dayName (3), "Wednesday", "3 == Wednesday");
|
|
||||||
is (Date::dayName (4), "Thursday", "4 == Thursday");
|
|
||||||
is (Date::dayName (5), "Friday", "5 == Friday");
|
|
||||||
is (Date::dayName (6), "Saturday", "6 == Saturday");
|
|
||||||
|
|
||||||
Date happyNewYear (1, 1, 2008);
|
// Leap year.
|
||||||
is (happyNewYear.dayOfWeek (), 2, "1/1/2008 == Tuesday");
|
ok (Date::leapYear (2008), "2008 is a leap year");
|
||||||
is (happyNewYear.month (), 1, "1/1/2008 == January");
|
notok (Date::leapYear (2007), "2007 is not a leap year");
|
||||||
is (happyNewYear.day (), 1, "1/1/2008 == 1");
|
ok (Date::leapYear (2000), "2000 is a leap year");
|
||||||
is (happyNewYear.year (), 2008, "1/1/2008 == 2008");
|
ok (Date::leapYear (1900), "1900 is a leap year");
|
||||||
|
|
||||||
is (now - yesterday, 1, "today - yesterday == 1");
|
// Days in month.
|
||||||
|
is (Date::daysInMonth (2, 2008), 29, "29 days in February 2008");
|
||||||
|
is (Date::daysInMonth (2, 2007), 28, "28 days in February 2007");
|
||||||
|
|
||||||
is (happyNewYear.toString (), "1/1/2008", "toString 1/1/2008");
|
// Names.
|
||||||
|
is (Date::monthName (1), "January", "1 = January");
|
||||||
|
is (Date::monthName (2), "February", "2 = February");
|
||||||
|
is (Date::monthName (3), "March", "3 = March");
|
||||||
|
is (Date::monthName (4), "April", "4 = April");
|
||||||
|
is (Date::monthName (5), "May", "5 = May");
|
||||||
|
is (Date::monthName (6), "June", "6 = June");
|
||||||
|
is (Date::monthName (7), "July", "7 = July");
|
||||||
|
is (Date::monthName (8), "August", "8 = August");
|
||||||
|
is (Date::monthName (9), "September", "9 = September");
|
||||||
|
is (Date::monthName (10), "October", "10 = October");
|
||||||
|
is (Date::monthName (11), "November", "11 = November");
|
||||||
|
is (Date::monthName (12), "December", "12 = December");
|
||||||
|
|
||||||
int m, d, y;
|
is (Date::dayName (0), "Sunday", "0 == Sunday");
|
||||||
happyNewYear.toMDY (m, d, y);
|
is (Date::dayName (1), "Monday", "1 == Monday");
|
||||||
is (m, 1, "1/1/2008 == January");
|
is (Date::dayName (2), "Tuesday", "2 == Tuesday");
|
||||||
is (d, 1, "1/1/2008 == 1");
|
is (Date::dayName (3), "Wednesday", "3 == Wednesday");
|
||||||
is (y, 2008, "1/1/2008 == 2008");
|
is (Date::dayName (4), "Thursday", "4 == Thursday");
|
||||||
|
is (Date::dayName (5), "Friday", "5 == Friday");
|
||||||
|
is (Date::dayName (6), "Saturday", "6 == Saturday");
|
||||||
|
|
||||||
Date epoch (9, 8, 2001);
|
is (Date::dayOfWeek ("SUNDAY"), 0, "SUNDAY == 0");
|
||||||
ok ((int)epoch.toEpoch () < 1000000000, "9/8/2001 < 1,000,000,000");
|
is (Date::dayOfWeek ("sunday"), 0, "sunday == 0");
|
||||||
epoch += 86400;
|
is (Date::dayOfWeek ("Sunday"), 0, "Sunday == 0");
|
||||||
ok ((int)epoch.toEpoch () > 1000000000, "9/9/2001 > 1,000,000,000");
|
is (Date::dayOfWeek ("Monday"), 1, "Monday == 1");
|
||||||
|
is (Date::dayOfWeek ("Tuesday"), 2, "Tuesday == 2");
|
||||||
|
is (Date::dayOfWeek ("Wednesday"), 3, "Wednesday == 3");
|
||||||
|
is (Date::dayOfWeek ("Thursday"), 4, "Thursday == 4");
|
||||||
|
is (Date::dayOfWeek ("Friday"), 5, "Friday == 5");
|
||||||
|
is (Date::dayOfWeek ("Saturday"), 6, "Saturday == 6");
|
||||||
|
|
||||||
Date fromEpoch (epoch.toEpoch ());
|
Date happyNewYear (1, 1, 2008);
|
||||||
is (fromEpoch.toString (), epoch.toString (), "ctor (time_t)");
|
is (happyNewYear.dayOfWeek (), 2, "1/1/2008 == Tuesday");
|
||||||
|
is (happyNewYear.month (), 1, "1/1/2008 == January");
|
||||||
|
is (happyNewYear.day (), 1, "1/1/2008 == 1");
|
||||||
|
is (happyNewYear.year (), 2008, "1/1/2008 == 2008");
|
||||||
|
|
||||||
Date fromString1 ("1/1/2008");
|
is (now - yesterday, 1, "today - yesterday == 1");
|
||||||
is (fromString1.month (), 1, "ctor (std::string) -> m");
|
|
||||||
is (fromString1.day (), 1, "ctor (std::string) -> d");
|
|
||||||
is (fromString1.year (), 2008, "ctor (std::string) -> y");
|
|
||||||
|
|
||||||
Date fromString2 ("1/1/2008", "m/d/Y");
|
is (happyNewYear.toString (), "1/1/2008", "toString 1/1/2008");
|
||||||
is (fromString2.month (), 1, "ctor (std::string) -> m");
|
|
||||||
is (fromString2.day (), 1, "ctor (std::string) -> d");
|
|
||||||
is (fromString2.year (), 2008, "ctor (std::string) -> y");
|
|
||||||
|
|
||||||
Date fromString3 ("20080101", "YMD");
|
int m, d, y;
|
||||||
is (fromString3.month (), 1, "ctor (std::string) -> m");
|
happyNewYear.toMDY (m, d, y);
|
||||||
is (fromString3.day (), 1, "ctor (std::string) -> d");
|
is (m, 1, "1/1/2008 == January");
|
||||||
is (fromString3.year (), 2008, "ctor (std::string) -> y");
|
is (d, 1, "1/1/2008 == 1");
|
||||||
|
is (y, 2008, "1/1/2008 == 2008");
|
||||||
|
|
||||||
Date fromString4 ("12/31/2007");
|
Date epoch (9, 8, 2001);
|
||||||
is (fromString4.month (), 12, "ctor (std::string) -> m");
|
ok ((int)epoch.toEpoch () < 1000000000, "9/8/2001 < 1,000,000,000");
|
||||||
is (fromString4.day (), 31, "ctor (std::string) -> d");
|
epoch += 86400;
|
||||||
is (fromString4.year (), 2007, "ctor (std::string) -> y");
|
ok ((int)epoch.toEpoch () > 1000000000, "9/9/2001 > 1,000,000,000");
|
||||||
|
|
||||||
Date fromString5 ("12/31/2007", "m/d/Y");
|
Date fromEpoch (epoch.toEpoch ());
|
||||||
is (fromString5.month (), 12, "ctor (std::string) -> m");
|
is (fromEpoch.toString (), epoch.toString (), "ctor (time_t)");
|
||||||
is (fromString5.day (), 31, "ctor (std::string) -> d");
|
|
||||||
is (fromString5.year (), 2007, "ctor (std::string) -> y");
|
// Date parsing.
|
||||||
|
Date fromString1 ("1/1/2008");
|
||||||
|
is (fromString1.month (), 1, "ctor (std::string) -> m");
|
||||||
|
is (fromString1.day (), 1, "ctor (std::string) -> d");
|
||||||
|
is (fromString1.year (), 2008, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
Date fromString2 ("1/1/2008", "m/d/Y");
|
||||||
|
is (fromString2.month (), 1, "ctor (std::string) -> m");
|
||||||
|
is (fromString2.day (), 1, "ctor (std::string) -> d");
|
||||||
|
is (fromString2.year (), 2008, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
Date fromString3 ("20080101", "YMD");
|
||||||
|
is (fromString3.month (), 1, "ctor (std::string) -> m");
|
||||||
|
is (fromString3.day (), 1, "ctor (std::string) -> d");
|
||||||
|
is (fromString3.year (), 2008, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
Date fromString4 ("12/31/2007");
|
||||||
|
is (fromString4.month (), 12, "ctor (std::string) -> m");
|
||||||
|
is (fromString4.day (), 31, "ctor (std::string) -> d");
|
||||||
|
is (fromString4.year (), 2007, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
Date fromString5 ("12/31/2007", "m/d/Y");
|
||||||
|
is (fromString5.month (), 12, "ctor (std::string) -> m");
|
||||||
|
is (fromString5.day (), 31, "ctor (std::string) -> d");
|
||||||
|
is (fromString5.year (), 2007, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
Date fromString6 ("20071231", "YMD");
|
||||||
|
is (fromString6.month (), 12, "ctor (std::string) -> m");
|
||||||
|
is (fromString6.day (), 31, "ctor (std::string) -> d");
|
||||||
|
is (fromString6.year (), 2007, "ctor (std::string) -> y");
|
||||||
|
|
||||||
|
// Relative dates.
|
||||||
|
Date r1 ("today");
|
||||||
|
ok (r1.sameDay (now), "today = now");
|
||||||
|
|
||||||
|
Date r2 ("tomorrow");
|
||||||
|
ok (r2.sameDay (now + 86400), "tomorrow = now + 1d");
|
||||||
|
|
||||||
|
Date r3 ("yesterday");
|
||||||
|
ok (r3.sameDay (now - 86400), "yesterday = now - 1d");
|
||||||
|
|
||||||
|
Date r4 ("sunday");
|
||||||
|
if (now.dayOfWeek () >= 0)
|
||||||
|
ok (r4.sameDay (now + (0 - now.dayOfWeek () + 7) * 86400), "next sunday");
|
||||||
|
else
|
||||||
|
ok (r4.sameDay (now + (0 - now.dayOfWeek ()) * 86400), "next sunday");;
|
||||||
|
|
||||||
|
Date r5 ("monday");
|
||||||
|
if (now.dayOfWeek () >= 1)
|
||||||
|
ok (r5.sameDay (now + (1 - now.dayOfWeek () + 7) * 86400), "next monday");
|
||||||
|
else
|
||||||
|
ok (r5.sameDay (now + (1 - now.dayOfWeek ()) * 86400), "next monday");;
|
||||||
|
|
||||||
|
Date r6 ("tuesday");
|
||||||
|
if (now.dayOfWeek () >= 2)
|
||||||
|
ok (r6.sameDay (now + (2 - now.dayOfWeek () + 7) * 86400), "next tuesday");
|
||||||
|
else
|
||||||
|
ok (r6.sameDay (now + (2 - now.dayOfWeek ()) * 86400), "next tuesday");;
|
||||||
|
|
||||||
|
Date r7 ("wednesday");
|
||||||
|
if (now.dayOfWeek () >= 3)
|
||||||
|
ok (r7.sameDay (now + (3 - now.dayOfWeek () + 7) * 86400), "next wednesday");
|
||||||
|
else
|
||||||
|
ok (r7.sameDay (now + (3 - now.dayOfWeek ()) * 86400), "next wednesday");;
|
||||||
|
|
||||||
|
Date r8 ("thursday");
|
||||||
|
if (now.dayOfWeek () >= 4)
|
||||||
|
ok (r8.sameDay (now + (4 - now.dayOfWeek () + 7) * 86400), "next thursday");
|
||||||
|
else
|
||||||
|
ok (r8.sameDay (now + (4 - now.dayOfWeek ()) * 86400), "next thursday");;
|
||||||
|
|
||||||
|
Date r9 ("friday");
|
||||||
|
if (now.dayOfWeek () >= 5)
|
||||||
|
ok (r9.sameDay (now + (5 - now.dayOfWeek () + 7) * 86400), "next friday");
|
||||||
|
else
|
||||||
|
ok (r9.sameDay (now + (5 - now.dayOfWeek ()) * 86400), "next friday");;
|
||||||
|
|
||||||
|
Date r10 ("saturday");
|
||||||
|
if (now.dayOfWeek () >= 6)
|
||||||
|
ok (r10.sameDay (now + (6 - now.dayOfWeek () + 7) * 86400), "next saturday");
|
||||||
|
else
|
||||||
|
ok (r10.sameDay (now + (6 - now.dayOfWeek ()) * 86400), "next saturday");;
|
||||||
|
|
||||||
|
Date r11 ("eow");
|
||||||
|
ok (r11 < now + (8 * 86400), "eow < 7 days away");
|
||||||
|
|
||||||
|
Date r12 ("eom");
|
||||||
|
ok (r12.sameMonth (now), "eom in same month as now");
|
||||||
|
|
||||||
|
Date r13 ("eoy");
|
||||||
|
ok (r13.sameYear (now), "eoy in same year as now");
|
||||||
|
}
|
||||||
|
|
||||||
|
catch (std::string& e)
|
||||||
|
{
|
||||||
|
fail ("Exception thrown.");
|
||||||
|
diag (e);
|
||||||
|
}
|
||||||
|
|
||||||
Date fromString6 ("20071231", "YMD");
|
|
||||||
is (fromString6.month (), 12, "ctor (std::string) -> m");
|
|
||||||
is (fromString6.day (), 31, "ctor (std::string) -> d");
|
|
||||||
is (fromString6.year (), 2007, "ctor (std::string) -> y");
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
43
src/tests/duration.t.cpp
Normal file
43
src/tests/duration.t.cpp
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Copyright 2005 - 2008, Paul Beckingham. All rights reserved.
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
#include <iostream>
|
||||||
|
#include <Date.h>
|
||||||
|
#include <test.h>
|
||||||
|
#include <../task.h>
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// daily, day, Nd
|
||||||
|
// weekly, Nw, sennight, biweekly, fortnight
|
||||||
|
// monthly, bimonthly, Nm, semimonthly
|
||||||
|
// 1st 2nd 3rd 4th .. 31st
|
||||||
|
// quarterly, Nq
|
||||||
|
// biannual, biyearly, annual, semiannual, yearly, Ny
|
||||||
|
int main (int argc, char** argv)
|
||||||
|
{
|
||||||
|
plan (17);
|
||||||
|
|
||||||
|
is (convertDuration ("daily"), 1, "duration daily = 1");
|
||||||
|
is (convertDuration ("day"), 1, "duration day = 1");
|
||||||
|
is (convertDuration ("0d"), 0, "duration 0d = 0");
|
||||||
|
is (convertDuration ("1d"), 1, "duration 1d = 1");
|
||||||
|
is (convertDuration ("7d"), 7, "duration 7d = 7");
|
||||||
|
is (convertDuration ("10d"), 10, "duration 10d = 10");
|
||||||
|
is (convertDuration ("100d"), 100, "duration 100d = 100");
|
||||||
|
|
||||||
|
is (convertDuration ("weekly"), 7, "duration weekly = 7");
|
||||||
|
is (convertDuration ("sennight"), 7, "duration sennight = 7");
|
||||||
|
is (convertDuration ("biweekly"), 14, "duration biweekly = 14");
|
||||||
|
is (convertDuration ("fortnight"), 14, "duration fortnight = 14");
|
||||||
|
is (convertDuration ("week"), 7, "duration week = 7");
|
||||||
|
is (convertDuration ("0w"), 0, "duration 0w = 0");
|
||||||
|
is (convertDuration ("1w"), 7, "duration 1w = 7");
|
||||||
|
is (convertDuration ("7w"), 49, "duration 7w = 49");
|
||||||
|
is (convertDuration ("10w"), 70, "duration 10w = 70");
|
||||||
|
is (convertDuration ("100w"), 700, "duration 100w = 700");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
int main (int argc, char** argv)
|
int main (int argc, char** argv)
|
||||||
{
|
{
|
||||||
plan (4);
|
plan (5);
|
||||||
|
|
||||||
T t;
|
T t;
|
||||||
std::string s = t.compose ();
|
std::string s = t.compose ();
|
||||||
@@ -48,6 +48,11 @@ int main (int argc, char** argv)
|
|||||||
is (s[37], 'X', "T::setStatus (deleted)");
|
is (s[37], 'X', "T::setStatus (deleted)");
|
||||||
diag (s);
|
diag (s);
|
||||||
|
|
||||||
|
t.setStatus (T::recurring);
|
||||||
|
s = t.compose ();
|
||||||
|
is (s[37], 'r', "T::setStatus (recurring)");
|
||||||
|
diag (s);
|
||||||
|
|
||||||
// Round trip test.
|
// Round trip test.
|
||||||
std::string sample = "00000000-0000-0000-0000-000000000000 - [] [] Sample";
|
std::string sample = "00000000-0000-0000-0000-000000000000 - [] [] Sample";
|
||||||
T t2;
|
T t2;
|
||||||
|
|||||||
11
src/text.cpp
11
src/text.cpp
@@ -285,6 +285,17 @@ std::string lowerCase (const std::string& input)
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
std::string upperCase (const std::string& input)
|
||||||
|
{
|
||||||
|
std::string output = input;
|
||||||
|
for (int i = 0; i < (int) input.length (); ++i)
|
||||||
|
if (::isupper (input[i]))
|
||||||
|
output[i] = ::toupper (input[i]);
|
||||||
|
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
const char* optionalBlankLine (Config& conf)
|
const char* optionalBlankLine (Config& conf)
|
||||||
{
|
{
|
||||||
|
|||||||
68
src/util.cpp
68
src/util.cpp
@@ -32,6 +32,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "Date.h"
|
||||||
#include "Table.h"
|
#include "Table.h"
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
#include "../auto.h"
|
#include "../auto.h"
|
||||||
@@ -236,3 +237,70 @@ const std::string uuid ()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// Recognize the following constructs, and return the number of days represented
|
||||||
|
int convertDuration (std::string& input)
|
||||||
|
{
|
||||||
|
input = lowerCase (input);
|
||||||
|
Date today;
|
||||||
|
|
||||||
|
std::vector <std::string> supported;
|
||||||
|
supported.push_back ("daily");
|
||||||
|
supported.push_back ("day");
|
||||||
|
supported.push_back ("weekly");
|
||||||
|
supported.push_back ("sennight");
|
||||||
|
supported.push_back ("biweekly");
|
||||||
|
supported.push_back ("fortnight");
|
||||||
|
supported.push_back ("monthly");
|
||||||
|
supported.push_back ("bimonthly");
|
||||||
|
supported.push_back ("quarterly");
|
||||||
|
supported.push_back ("biannual");
|
||||||
|
supported.push_back ("biyearly");
|
||||||
|
supported.push_back ("annual");
|
||||||
|
supported.push_back ("semiannual");
|
||||||
|
supported.push_back ("yearly");
|
||||||
|
|
||||||
|
std::vector <std::string> matches;
|
||||||
|
if (autoComplete (input, supported, matches) == 1)
|
||||||
|
{
|
||||||
|
std::string found = matches[0];
|
||||||
|
|
||||||
|
if (found == "daily" || found == "day") return 1;
|
||||||
|
else if (found == "weekly" || found == "sennight") return 7;
|
||||||
|
else if (found == "biweekly" || found == "fortnight") return 14;
|
||||||
|
else if (found == "monthly") return 30;
|
||||||
|
else if (found == "bimonthly") return 61;
|
||||||
|
else if (found == "quarterly") return 91;
|
||||||
|
else if (found == "semiannual") return 183;
|
||||||
|
else if (found == "yearly" || found == "annual") return 365;
|
||||||
|
else if (found == "biannual" || found == "biyearly") return 730;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Support \d+ d|w|m|q|y
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Verify all digits followed by d, w, m, q, or y.
|
||||||
|
unsigned int length = input.length ();
|
||||||
|
for (unsigned int i = 0; i < length; ++i)
|
||||||
|
{
|
||||||
|
if (! isdigit (input[i]) &&
|
||||||
|
i == length - 1)
|
||||||
|
{
|
||||||
|
int number = ::atoi (input.substr (0, i).c_str ());
|
||||||
|
|
||||||
|
switch (input[length - 1])
|
||||||
|
{
|
||||||
|
case 'd': return number * 1; break;
|
||||||
|
case 'w': return number * 7; break;
|
||||||
|
case 'm': return number * 30; break;
|
||||||
|
case 'q': return number * 91; break;
|
||||||
|
case 'y': return number * 365; break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0; // Error.
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user