Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 122022
Collapse All | Expand All

(-)colortail-0.3.0/CfgFileParser.cc (-1 / +2 lines)
Lines 19-26 Link Here
19
19
20
#include "CfgFileParser.h"
20
#include "CfgFileParser.h"
21
21
22
#include <iostream>
22
#include <stdio.h>
23
#include <stdio.h>
23
#include <fstream.h>
24
#include <fstream>
24
#include <assert.h>
25
#include <assert.h>
25
#include <string.h>
26
#include <string.h>
26
#include <malloc.h>
27
#include <malloc.h>
(-)colortail-0.3.0/CfgFileParser.h (-1 / +2 lines)
Lines 25-31 Link Here
25
25
26
#include <sys/types.h>
26
#include <sys/types.h>
27
#include <regex.h>
27
#include <regex.h>
28
#include <fstream.h>
28
#include <fstream>
29
29
30
#ifdef HAVE_GNUREGEX_H
30
#ifdef HAVE_GNUREGEX_H
31
# include <gnuregex.h>
31
# include <gnuregex.h>
Lines 37-42 Link Here
37
# endif
37
# endif
38
#endif
38
#endif
39
39
40
using namespace std;
40
41
41
class SearchData
42
class SearchData
42
{
43
{
(-)colortail-0.3.0/Colorizer.cc (-1 / +1 lines)
Lines 23-29 Link Here
23
23
24
#include <assert.h>
24
#include <assert.h>
25
#include <stdio.h>
25
#include <stdio.h>
26
#include <strstream.h>
26
#include <strstream>
27
27
28
28
29
Colorizer::Colorizer()
29
Colorizer::Colorizer()
(-)colortail-0.3.0/ColorTail.cc (-1 / +1 lines)
Lines 17-23 Link Here
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <iostream.h>
20
#include <iostream>
21
#include <assert.h>
21
#include <assert.h>
22
#include <unistd.h>
22
#include <unistd.h>
23
23
(-)colortail-0.3.0/Info.cc (-1 / +3 lines)
Lines 17-27 Link Here
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <iostream.h>
20
#include <iostream>
21
21
22
#include "Info.h"
22
#include "Info.h"
23
#include "config.h"
23
#include "config.h"
24
24
25
using namespace std;
26
25
Info::Info()
27
Info::Info()
26
{
28
{
27
}
29
}
(-)colortail-0.3.0/OptionsParser.cc (-2 / +3 lines)
Lines 17-24 Link Here
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <iostream.h>
20
#include <iostream>
21
#include <strstream.h>
21
#include <strstream>
22
#include <string.h>
22
#include <string.h>
23
#include <stdio.h>
23
#include <stdio.h>
24
#include <stdlib.h>
24
#include <stdlib.h>
Lines 27-32 Link Here
27
#include "Info.h"
27
#include "Info.h"
28
#include "Usage.h"
28
#include "Usage.h"
29
29
30
using namespace std;
30
// methods for class Options
31
// methods for class Options
31
32
32
Options::Options()
33
Options::Options()
(-)colortail-0.3.0/TailFile.cc (-1 / +1 lines)
Lines 17-23 Link Here
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <iostream.h>
20
#include <iostream>
21
#include <string.h>
21
#include <string.h>
22
#include <stdio.h>
22
#include <stdio.h>
23
#include <sys/stat.h>
23
#include <sys/stat.h>
(-)colortail-0.3.0/TailFile.h (-1 / +3 lines)
Lines 23-32 Link Here
23
#include "Colorizer.h"
23
#include "Colorizer.h"
24
24
25
#include <stdio.h>
25
#include <stdio.h>
26
#include <strstream.h>
26
#include <strstream>
27
27
28
#define MAX_CHARS_READ 1024
28
#define MAX_CHARS_READ 1024
29
29
30
using namespace std;
31
30
class TailFile
32
class TailFile
31
{
33
{
32
  private:
34
  private:
(-)colortail-0.3.0/Usage.cc (-1 / +3 lines)
Lines 17-26 Link Here
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
19
20
#include <iostream.h>
20
#include <iostream>
21
21
22
#include "Usage.h"
22
#include "Usage.h"
23
23
24
using namespace std;
25
24
Usage::Usage()
26
Usage::Usage()
25
{
27
{
26
}
28
}

Return to bug 122022