This file is indexed.

/usr/include/IVGlyph/textwindow.h is in ivtools-dev 1.2.11a1-11.

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
26
27
28
29
30
31
32
//
// Simple Text Editor Buffer Implementation
//
// Copyright (C) 1993 Ellemtel Telecommunication Systems Labratories
//
// Permission is granted to any individual or institution to use, copy,
// modify, and distribute this software, provided that this complete
// copyright and permission notice is maintained, intact, in all copies
// and supporting documentation.
//
// Ellemtel Telecommunication Systems Labratories make no representation
// of the suitability of this software for any purpose. It is provided
// "as is" without any expressed or implied warranty.
//
// Jan Andersson, Torpa Konsult AB
// janne@torpa.se - 1993-08-29

// Sub-classing ApplicationWindow to receive clipboard
// selection events. Window::receive does not support this (!?)

#ifndef textwindow_h
#define textwindow_h

#include <InterViews/window.h>

class TextEditAppWindow : public ApplicationWindow {
public:
   TextEditAppWindow(Glyph*);
   virtual void receive(const Event&);
};

#endif