~ubuntu-branches/ubuntu/oneiric/ecasound2.2/oneiric

« back to all changes in this revision

Viewing changes to ecatools/ecasignalview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-03-23 21:42:49 UTC
  • mfrom: (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080323214249-evlfv3y1o8q747la
Tags: 2.4.6.1-2
* Bug fix: "FTBFS with GCC 4.3: missing #includes", thanks to Martin
  Michlmayr (Closes: #454890).
- 13_gcc4: updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// ------------------------------------------------------------------------
2
2
// ecasignalview.cpp: A simple command-line tools for monitoring
3
3
//                    signal amplitude.
4
 
// Copyright (C) 1999-2005 Kai Vehmanen
 
4
// Copyright (C) 1999-2005,2007 Kai Vehmanen
5
5
// Copyright (C) 2005 Jeffrey Cunningham
6
6
//
7
7
// This program is free software; you can redistribute it and/or modify
23
23
#include <config.h>
24
24
#endif
25
25
 
 
26
#include <cstdlib>
26
27
#include <iostream>
27
28
#include <string>
28
29
#include <vector>
34
35
#include <signal.h>
35
36
#include <unistd.h>
36
37
 
 
38
#include <sys/time.h>     /* POSIX: select() */
 
39
#include <sys/select.h>   /* POSIX: timeval struct */
 
40
 
37
41
#include <kvutils/kvu_com_line.h>
38
42
#include <kvutils/kvu_utils.h>
39
43
#include <kvutils/kvu_numtostr.h>