This file is indexed.

/usr/share/monkeystudio/templates/Objective-C++/Herited Class/$Base File Name$.h is in monkeystudio-common 1.9.0.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef $Base File Name.upper$_H
#define $Base File Name.upper$_H

#import "$Parent's Include File$"

class $Class Name$ : $Herits Type$ $Parent Class$
{
public:
    $Class Name$();
    virtual ~$Class Name$();

    /*** For dynamic memory management (can be removed if it isn't necessary) ***/
    $Class Name$( const $Class Name$& other );
    $Class Name$& operator=( const $Class Name$& other );
    bool operator==( const $Class Name$& other ) const;
    bool operator!=( const $Class Name$& other ) const;
    /*** End of dynamic memory management ***/
};

#endif // $Base File Name.upper$_H