File: inheritance.yo

package info (click to toggle)
c%2B%2B-annotations 12.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,044 kB
  • sloc: cpp: 24,337; makefile: 1,517; ansic: 165; sh: 121; perl: 90
file content (52 lines) | stat: -rw-r--r-- 1,605 bytes parent folder | download | duplicates (3)
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
includefile(inheritance/intro)

    lsect(VehicleSystem)(Related types)
    includefile(inheritance/related)

        subsect(Inheritance depth: desirable?)
        includefile(inheritance/depth)

    sect(Access rights: public, private, protected)
    includefile(inheritance/accessrights)

        lsubsect(DERIVATIONTYPES)(Public, protected and private derivation)
        includefile(inheritance/derivationtypes)

        lsubsect(ACCESSPROMOTION)(Promoting access rights)
        includefile(inheritance/accessprom)

    sect(The constructor of a derived class)
    includefile(inheritance/constructor)

        subsect(Move construction)
        includefile(inheritance/move)

        subsect(Move assignment)
        includefile(inheritance/assignment)

        lsubsect(BASECONS)(Inheriting constructors)
        includefile(inheritance/usingbase)

        subsect(Aggregate Initializations)
        includefile(inheritance/aggregate)

    sect(The destructor of a derived class)
    includefile(inheritance/destructor)

    lsect(Truck)(Redefining member functions)
    includefile(inheritance/redefining)

    lsect(MULTIPLE)(Multiple inheritance)
    includefile(inheritance/multiple)

    sect(Conversions between base classes and derived classes)
    includefile(inheritance/conversions)

        subsect(Conversions with object assignments)
        includefile(inheritance/objectconv)

        subsect(Conversions with pointer assignments)
        includefile(inheritance/pointerconv)

    lsect(NONDEFINIT)(Using non-default constructors with new[])
    includefile(inheritance/nondefault)