This file is indexed.

/usr/include/csound/OrchestraNode.hpp is in libcsoundac-dev 1:6.05~dfsg1-7build1.

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
21
22
23
24
25
#ifndef SILENCE_ORCHESTRANODE_H
#define SILENCE_ORCHESTRANODE_H

class Timebase;
class Event;
class Audio;

class SILENCE_PUBLIC OrchestraNode
{
public:
  OrchestraNode();
  virtual ~OrchestraNode();
  setTimebase(Timebase *timebase);
  Timebase *getTimebase();

  virtual void addSource(OrchestraNode *orchestraNode);
  virtual size_t getSourceCount() const;
  virtual OrchestraNode *getSource(size_it index);
  virtual void setSource(size_t index, OrchestraNode *source);
  virtual void removeAllSources();


};

#endif