• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Args.cppH A D18-Jan-20217.2 KiB247147

Args.hH A D18-Jan-20212.4 KiB6932

Color.cppH A D18-Jan-202118.3 KiB683498

Color.hH A D18-Jan-20213.1 KiB8143

Composite.cppH A D18-Jan-20215.1 KiB14960

Composite.hH A D18-Jan-20211.7 KiB4817

Configuration.cppH A D18-Jan-20218.9 KiB324212

Configuration.hH A D18-Jan-20212.5 KiB7032

Datetime.cppH A D18-Jan-202193 KiB3,8032,801

Datetime.hH A D18-Jan-20217.5 KiB216172

Duration.cppH A D18-Jan-202114.7 KiB553408

Duration.hH A D18-Jan-20212.6 KiB8246

FS.cppH A D18-Jan-202125.3 KiB1,061760

FS.hH A D18-Jan-20214.1 KiB15097

JSON.cppH A D18-Jan-202113.1 KiB491363

JSON.hH A D18-Jan-20215.6 KiB184135

Lexer.cppH A D18-Jan-202126.8 KiB944670

Lexer.hH A D18-Jan-20215 KiB12079

Log.cppH A D18-Jan-20213.7 KiB12471

Log.hH A D18-Jan-20212 KiB5725

Msg.cppH A D18-Jan-20213.5 KiB11660

Msg.hH A D18-Jan-20211.9 KiB5521

PEG.cppH A D18-Jan-202113 KiB460308

PEG.hH A D18-Jan-20213.1 KiB9351

Packrat.cppH A D18-Jan-202122.9 KiB771553

Packrat.hH A D18-Jan-20213 KiB7134

Palette.cppH A D18-Jan-20212.8 KiB8340

Palette.hH A D18-Jan-20211.7 KiB5220

Pig.cppH A D18-Jan-202115.3 KiB682472

Pig.hH A D18-Jan-20212.7 KiB8348

READMEH A D18-Jan-2021540 1711

RX.cppH A D18-Jan-20214.5 KiB160101

RX.hH A D18-Jan-20211.9 KiB5925

SAX.cppH A D18-Jan-202116.3 KiB580402

Table.cppH A D18-Jan-202110.4 KiB375259

Table.hH A D18-Jan-20214.8 KiB10164

Timer.cppH A D18-Jan-20213.2 KiB9548

Timer.hH A D18-Jan-20211.9 KiB5421

Tree.cppH A D18-Jan-20217.6 KiB276161

Tree.hH A D18-Jan-20212.7 KiB7736

ct.cppH A D18-Jan-20211.7 KiB429

format.cppH A D18-Jan-202110.4 KiB354249

format.hH A D18-Jan-20213 KiB8850

ip.cppH A D18-Jan-20216 KiB238160

lex.cppH A D18-Jan-2021537 2315

shared.cppH A D18-Jan-202123.9 KiB897561

shared.hH A D18-Jan-20213.9 KiB9655

unicode.cppH A D18-Jan-20215.4 KiB13469

unicode.hH A D18-Jan-20211.8 KiB4011

utf8.cppH A D18-Jan-20218.8 KiB317195

utf8.hH A D18-Jan-20211.9 KiB4514

wcwidth.hH A D18-Jan-202130.4 KiB542504

README

1Shared
2======
3
4The 'shared' library is a set of reusable objects to be shared as-is between
5various programs, including Taskwarrior, Taskserver, Tasksh and Timewarrior.
6
7In order to be reusable, and therefore a member of libshared, conditions must
8be met:
9
10  - Shared objects may only make use of other shared objects, or external
11    dependencies (libuuid, gettext, readline etc), but no objects from the
12    project directories.
13
14  - Shared objects may assume only one external 'cmake.h' that defines
15    platform/portability constants.
16
17