File: LinkedList.h

package info (click to toggle)
cxxtest 4.4-2.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,804 kB
  • sloc: python: 9,525; cpp: 9,399; xml: 435; sh: 258; ruby: 229; makefile: 86; ansic: 68; perl: 16
file content (73 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
-------------------------------------------------------------------------
 CxxTest: A lightweight C++ unit testing library.
 Copyright (c) 2008 Sandia Corporation.
 This software is distributed under the LGPL License v3
 For more information, see the COPYING file in the top CxxTest directory.
 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
 the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
*/

#ifndef __cxxtest__LinkedList_h__
#define __cxxtest__LinkedList_h__

#include <cxxtest/Flags.h>

namespace CxxTest
{
struct List;
class Link;

struct List
{
    Link *_head;
    Link *_tail;

    void initialize();

    Link *head();
    const Link *head() const;
    Link *tail();
    const Link *tail() const;

    bool empty() const;
    unsigned size() const;
    Link *nth(unsigned n);

    void activateAll();
    void leaveOnly(const Link &link);
};

class Link
{
public:
    Link();
    virtual ~Link();

    bool active() const;
    void setActive(bool value = true);

    Link *justNext();
    Link *justPrev();

    Link *next();
    Link *prev();
    const Link *next() const;
    const Link *prev() const;

    void attach(List &l);
    void detach(List &l);

private:
    Link *_next;
    Link *_prev;
    bool _active;

    Link(const Link &);
    Link &operator=(const Link &);
};
}

#endif // __cxxtest__LinkedList_h__